Skip to content

Commit

Permalink
style: break long list over multiple lines
Browse files Browse the repository at this point in the history
And sort it alphabetically.
  • Loading branch information
matrei committed Dec 26, 2024
1 parent de7ac99 commit fe95421
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,13 @@ class GrailsPluginGradlePlugin extends GrailsGradlePlugin {
project.tasks.named('jar', Jar) { Jar jarTask ->
jarTask.enabled = true
jarTask.archiveClassifier.set('') // Remove '-plain' suffix from jar file name
jarTask.exclude('application.yml', 'application.groovy', 'logback.groovy', 'logback.xml', 'logback-spring.xml')
jarTask.exclude(
'application.groovy',
'application.yml',
'logback.groovy',
'logback.xml',
'logback-spring.xml'
)
}
}

Expand Down

0 comments on commit fe95421

Please sign in to comment.