Last active
July 3, 2017 17:46
-
-
Save antonarhipov/15be2f6a868dd0f82b72 to your computer and use it in GitHub Desktop.
Setting up XRebel for Grails 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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