Does anyone know how to configure the jetty gradle plugin to run in debug mode so that I can attach a remote debugger?
I\'ve tried setting the gradle and java opts t
add this into the build.gradle
jettyRun { jvmArgs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005' }