From 4936b043bd3fb572122b5f852d1fd20d71d81a17 Mon Sep 17 00:00:00 2001 From: Scott Murphy Heiberg Date: Mon, 16 Sep 2024 14:44:19 -0700 Subject: [PATCH] Gradle 8 compatability: compileWebappGroovyPages depends on copyAstClasses --- .../org/grails/gradle/plugin/web/gsp/GroovyPagePlugin.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/groovy/org/grails/gradle/plugin/web/gsp/GroovyPagePlugin.groovy b/src/main/groovy/org/grails/gradle/plugin/web/gsp/GroovyPagePlugin.groovy index 086565b7..5faa04b0 100644 --- a/src/main/groovy/org/grails/gradle/plugin/web/gsp/GroovyPagePlugin.groovy +++ b/src/main/groovy/org/grails/gradle/plugin/web/gsp/GroovyPagePlugin.groovy @@ -67,7 +67,7 @@ class GroovyPagePlugin implements Plugin { } compileWebappGroovyPages.setClasspath( allClasspath ) - + compileWebappGroovyPages.dependsOn(allTasks.findByName("copyAstClasses")) project.afterEvaluate { GrailsExtension grailsExt = project.extensions.getByType(GrailsExtension)