This message was deleted.
# questions
s
This message was deleted.
m
I add the following to Grails Plugin build files:
Copy code
tasks.named('bootJar') {
    enabled = false // Don't need a bootJar for plugin
}
tasks.named('jar', Jar) {
    enabled = true // Need a jar for plugin
    archiveClassifier = '' // Don't want the '-plain' classifier
}
👍 1
p
I think we should add this by default from the CLI application or the Grails Gradle Plugin. However, recently I was trying to set remove the classier from one of the plugin and encountered some issues with building project.
👍 2