matrei commented on code in PR #14708:
URL: https://github.com/apache/grails-core/pull/14708#discussion_r2074860305
##########
gradle/assemble-config.gradle:
##########
@@ -23,11 +23,9 @@ tasks.register('installToHomeDist').configure { Task task ->
doLast {
copy {
- it.from layout.buildDirectory.dir('libs').map {
it.asFileTree.matching {
- include '**/*.jar'
- exclude '**/*-sources.jar', '**/*-javadoc.jar'
- } }
+ it.from layout.buildDirectory.dir('libs')
it.into distInstallDir
+ it.exclude '*sources.jar', '*-javadoc.jar'
Review Comment:
Is there a reason why we have `*` on sources vs `*-` on javadoc?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]