Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B6533200D51 for ; Fri, 8 Dec 2017 00:59:54 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B4F35160C20; Thu, 7 Dec 2017 23:59:54 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2DC3A160C0C for ; Fri, 8 Dec 2017 00:59:54 +0100 (CET) Received: (qmail 79759 invoked by uid 500); 7 Dec 2017 23:59:53 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 79750 invoked by uid 99); 7 Dec 2017 23:59:53 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Dec 2017 23:59:53 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 456DFF6156; Thu, 7 Dec 2017 23:59:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sunlan@apache.org To: commits@groovy.apache.org Message-Id: <838ce29f18b04f12873e6f756595d13a@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: groovy git commit: Speed up class loading of groovy-all files Date: Thu, 7 Dec 2017 23:59:53 +0000 (UTC) archived-at: Thu, 07 Dec 2017 23:59:54 -0000 Repository: groovy Updated Branches: refs/heads/master 964718981 -> ef6c85ebb 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/ef6c85eb Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/ef6c85eb Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/ef6c85eb Branch: refs/heads/master Commit: ef6c85ebb8431dcd1260a7689c4006d6a8f88ad8 Parents: 9647189 Author: sunlan Authored: Fri Dec 8 07:59:48 2017 +0800 Committer: sunlan Committed: Fri Dec 8 07:59:48 2017 +0800 ---------------------------------------------------------------------- gradle/assemble.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/ef6c85eb/gradle/assemble.gradle ---------------------------------------------------------------------- diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle index 145b07b..2c3d5ce 100644 --- a/gradle/assemble.gradle +++ b/gradle/assemble.gradle @@ -436,7 +436,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)