Repository: groovy Updated Branches: refs/heads/master fbeeae04f -> d88050bc9
GROOVY-8429: Jar files under indy directory of distribution miss the file extension(i.e. jar) Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/d88050bc Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/d88050bc Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/d88050bc Branch: refs/heads/master Commit: d88050bc92aadf3d2c44c120ce1daa40e287d2ad Parents: fbeeae0 Author: paulk <[email protected]> Authored: Wed Jan 3 18:45:02 2018 +1000 Committer: paulk <[email protected]> Committed: Wed Jan 3 18:45:02 2018 +1000 ---------------------------------------------------------------------- gradle/assemble.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/d88050bc/gradle/assemble.gradle ---------------------------------------------------------------------- diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle index 530a39a..fa13262 100644 --- a/gradle/assemble.gradle +++ b/gradle/assemble.gradle @@ -342,7 +342,7 @@ ext.distSpec = copySpec { duplicatesStrategy = DuplicatesStrategy.EXCLUDE from("$projectDir/licenses/LICENSE-BINZIP") from("$projectDir/notices/NOTICE-BINZIP") - rename '([A-Z]+)-(.*)', '$1' + rename '([A-Z]+)-BINZIP', '$1' exclude { it.file.name =~ /-raw/ } into('lib') { from jarjar
