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 AD2D5200CE3 for ; Sun, 9 Jul 2017 05:05:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id ABB4C16B714; Sun, 9 Jul 2017 03:05:41 +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 F061716B713 for ; Sun, 9 Jul 2017 05:05:40 +0200 (CEST) Received: (qmail 58520 invoked by uid 500); 9 Jul 2017 03:05:40 -0000 Mailing-List: contact commits-help@polygene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@polygene.apache.org Delivered-To: mailing list commits@polygene.apache.org Received: (qmail 58502 invoked by uid 99); 9 Jul 2017 03:05:40 -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; Sun, 09 Jul 2017 03:05:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 44B73E78B0; Sun, 9 Jul 2017 03:05:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: niclas@apache.org To: commits@polygene.apache.org Date: Sun, 09 Jul 2017 03:05:41 -0000 Message-Id: In-Reply-To: <67f47022309342349e8e2e9ae8c4a231@git.apache.org> References: <67f47022309342349e8e2e9ae8c4a231@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] polygene-java git commit: Maybe more generic form of RAT exclusion. archived-at: Sun, 09 Jul 2017 03:05:41 -0000 Maybe more generic form of RAT exclusion. Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/f8380359 Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/f8380359 Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/f8380359 Branch: refs/heads/develop Commit: f8380359bfe3a82ee07894f40cedac0a0d497981 Parents: 0665d56 Author: niclas Authored: Sun Jul 9 11:05:30 2017 +0800 Committer: niclas Committed: Sun Jul 9 11:05:30 2017 +0800 ---------------------------------------------------------------------- .../gradle/structure/distributions/DistributionsPlugin.groovy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/f8380359/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy ---------------------------------------------------------------------- diff --git a/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy b/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy index 1fa7936..bc6e796 100644 --- a/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy +++ b/buildSrc/src/main/groovy/org/apache/polygene/gradle/structure/distributions/DistributionsPlugin.groovy @@ -166,8 +166,7 @@ class DistributionsPlugin implements Plugin spec.exclude '**/.nb-gradle*' // Netbeans files // Polygene Generator files - spec.exclude '**/customUnixStartScript.txt' - spec.exclude '**/customWindowsStartScript.txt' + spec.exclude 'tools/generator-polygene/app/templates/**/*.txt' spec.into '.' }