You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2017/12/07 23:58:38 UTC

groovy git commit: Speed up class loading of groovy-all files

Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_6_X 71bbcd54c -> 8ee71b384


Speed up class loading of groovy-all files


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/8ee71b38
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/8ee71b38
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/8ee71b38

Branch: refs/heads/GROOVY_2_6_X
Commit: 8ee71b3843853f76662bae29ee892572f183878f
Parents: 71bbcd5
Author: sunlan <su...@apache.org>
Authored: Fri Dec 8 07:58:30 2017 +0800
Committer: sunlan <su...@apache.org>
Committed: Fri Dec 8 07:58:30 2017 +0800

----------------------------------------------------------------------
 gradle/assemble.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/8ee71b38/gradle/assemble.gradle
----------------------------------------------------------------------
diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle
index db74c54..2e97b38 100644
--- a/gradle/assemble.gradle
+++ b/gradle/assemble.gradle
@@ -438,7 +438,7 @@ task jarAll(type: Jar, dependsOn: replaceJarWithJarJar) {
 
         ant {
             copy(file: archivePathTmp, tofile: archivePath)
-            jar(destfile: archivePath, update:true, manifest: manifestPath) {
+            jar(destfile: archivePath, update: true, index: true, manifest: manifestPath) {
                 zipfileset(src: jar.archivePath, excludes:'META-INF')
             }
             delete(file: archivePathTmp, quiet: true, deleteonexit: true)