Skip to content

Commit 0b14236

Browse files
committed
Gradle - compileGroovyPages shouldn't depend on test compilation, Fixes #9618
1 parent a45aaad commit 0b14236

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/web/gsp/GroovyPagePlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class GroovyPagePlugin implements Plugin<Project> {
5858
}
5959

6060

61-
compileGroovyPages.dependsOn( allTasks.withType(GroovyCompile) )
61+
compileGroovyPages.dependsOn( allTasks.findByName("classes") )
6262
compileGroovyPages.dependsOn( compileWebappGroovyPages )
6363

6464
allTasks.withType(War) { War war ->

0 commit comments

Comments
 (0)