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 b053c52 commit 11ccd36Copy full SHA for 11ccd36
grails-gradle-plugin/src/main/groovy/org/grails/gradle/plugin/web/gsp/GroovyPagePlugin.groovy
@@ -72,9 +72,11 @@ class GroovyPagePlugin implements Plugin<Project> {
72
war.classpath = war.classpath + project.files(destDir)
73
}
74
allTasks.withType(Jar) { Jar jar ->
75
- if(!(jar instanceof War) && (jar.name == 'jar' || jar.name == 'bootJar')) {
+ if(!(jar instanceof War) && (jar.name == 'bootJar')) {
76
jar.dependsOn compileGroovyPages
77
- jar.from destDir
+ jar.from(destDir) {
78
+ into("BOOT-INF/classes")
79
+ }
80
81
82
0 commit comments