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 80980200CD7 for ; Mon, 17 Jul 2017 14:45:57 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7F42F164E27; Mon, 17 Jul 2017 12:45:57 +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 5A697164E14 for ; Mon, 17 Jul 2017 14:45:56 +0200 (CEST) Received: (qmail 50123 invoked by uid 500); 17 Jul 2017 12:45:55 -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 50009 invoked by uid 99); 17 Jul 2017 12:45:55 -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; Mon, 17 Jul 2017 12:45:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2BFD6E9684; Mon, 17 Jul 2017 12:45:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulmerlin@apache.org To: commits@polygene.apache.org Date: Mon, 17 Jul 2017 12:46:05 -0000 Message-Id: In-Reply-To: <3fd3094d4e4342f1bf72e281f66a5cca@git.apache.org> References: <3fd3094d4e4342f1bf72e281f66a5cca@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [13/50] [abbrv] polygene-java git commit: Exclude txt files that are copied verbatim to generated project and should not have license headers. archived-at: Mon, 17 Jul 2017 12:45:57 -0000 Exclude txt files that are copied verbatim to generated project and should not have license headers. Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/0665d56d Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/0665d56d Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/0665d56d Branch: refs/heads/master Commit: 0665d56d6432800226196d9deb9b610661841c7e Parents: bc0a510 Author: niclas Authored: Sun Jul 9 11:03:39 2017 +0800 Committer: niclas Committed: Sun Jul 9 11:03:39 2017 +0800 ---------------------------------------------------------------------- .../gradle/structure/distributions/DistributionsPlugin.groovy | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/0665d56d/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 f6eee1f..1fa7936 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 @@ -165,6 +165,10 @@ class DistributionsPlugin implements Plugin spec.exclude '**/.nb-gradle/**' // Netbeans files spec.exclude '**/.nb-gradle*' // Netbeans files + // Polygene Generator files + spec.exclude '**/customUnixStartScript.txt' + spec.exclude '**/customWindowsStartScript.txt' + spec.into '.' } def srcDistSupplementaryFilesCopySpec = project.copySpec { CopySpec spec ->