Gradle
/*
def v = "**/*.xml"
*/
Groovy think the */
inside the string is the end of block comment.
Gradle
/*
def v = "**/*.xml"
*/
Groovy think the */
inside the string is the end of block comment.
If you are commenting out a block of (syntactically correct) code, I find it easier to use if(false) {...}
to avoid this problem.