We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a78c022 commit 1ecf2bdCopy full SHA for 1ecf2bd
grails-gradle/plugins/src/main/groovy/org/grails/gradle/plugin/profiles/GrailsProfileGradlePlugin.groovy
@@ -176,6 +176,10 @@ class GrailsProfileGradlePlugin implements Plugin<Project> {
176
it.classpath = project.files(runtimeOnlyConfiguration.get(), project.configurations.named('runtimeClasspath').get())
177
}
178
179
+ project.tasks.named('classes').configure {
180
+ it.dependsOn(compileTask)
181
+ }
182
+
183
TaskProvider<Jar> jarTask = project.tasks.named('jar', Jar)
184
jarTask.configure { Jar jar ->
185
jar.dependsOn(processProfileResourcesTask, compileTask)
0 commit comments