Skip to content

Instantly share code, notes, and snippets.

@antonarhipov
Last active July 3, 2017 17:46
Show Gist options
  • Save antonarhipov/15be2f6a868dd0f82b72 to your computer and use it in GitHub Desktop.
Save antonarhipov/15be2f6a868dd0f82b72 to your computer and use it in GitHub Desktop.
Setting up XRebel for Grails 3
//in build.gradle:
project.afterEvaluate {
for (Task task : project.getTasks()) {
if (task instanceof JavaExec) {
(task as JavaExec).jvmArgs "-javaagent:xrebel.jar"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment