Hello -
I’ve set up the Gradle daemon using a gradle.properties file as such:
org.gradle.daemon=true
org.gradle.jvmargs=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005
As you can see, I’ve added the jvmargs parameter in order to allow remote debugging.
My problem is that every time I stop the jetty plugin (Using ctrl+c) the daemon quits as well… which sort of misses the point.
Is there a way to quit Jetty without quitting the daemon? Have I missed anything?
Thanks!