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 DC412200C5F for ; Sun, 23 Apr 2017 18:36:34 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DAE3F160BB4; Sun, 23 Apr 2017 16:36:34 +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 375AE160B96 for ; Sun, 23 Apr 2017 18:36:34 +0200 (CEST) Received: (qmail 3976 invoked by uid 500); 23 Apr 2017 16:36:33 -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 3967 invoked by uid 99); 23 Apr 2017 16:36:33 -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, 23 Apr 2017 16:36:33 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 41E4CE185A; Sun, 23 Apr 2017 16:36:33 +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: Sun, 23 Apr 2017 16:36:33 -0000 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: [1/3] polygene-java git commit: build: add missing projects into the source distribution archived-at: Sun, 23 Apr 2017 16:36:35 -0000 Repository: polygene-java Updated Branches: refs/heads/develop bd1eddacf -> 69db9d4ce build: add missing projects into the source distribution Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/528ad2fb Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/528ad2fb Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/528ad2fb Branch: refs/heads/develop Commit: 528ad2fb37f65f95c644a1a501f7fbbbf08ff3ac Parents: bd1edda Author: Paul Merlin Authored: Sun Apr 23 18:35:31 2017 +0200 Committer: Paul Merlin Committed: Sun Apr 23 18:35:31 2017 +0200 ---------------------------------------------------------------------- .../gradle/structure/distributions/DistributionsPlugin.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/528ad2fb/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 80b940c..6404495 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 @@ -130,12 +130,14 @@ class DistributionsPlugin implements Plugin def relPath = new File( project.rootProject.projectDir.toURI().relativize( p.projectDir.toURI() ).toString() ) spec.include "$relPath/**" } + spec.include 'distributions/**' + spec.include 'reports/**' + spec.include 'release/**' spec.include 'internals/**' spec.include 'manual/**' spec.include 'samples/**' spec.include 'tests/**' spec.include 'tutorials/**' - spec.include 'tools/shell/**' // Filtered, see below spec.exclude 'settings.gradle' spec.exclude 'gradle.properties' @@ -282,8 +284,6 @@ class DistributionsPlugin implements Plugin 'samples/rental/src/main/resources/*.xsd', // Polygene Generator Heroes Templates - MIT 'tools/generator-polygene/app/templates/Heroes/**', - // templates that will become the user's source files, should not have license headers - 'tools/shell/src/dist/etc/templates/**', ] } as Action ) project.tasks.create( TaskNames.BUILD_SOURCE_DIST, ExecLogged, { ExecLogged task ->