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 <[email protected]> Authored: Sun Apr 23 18:35:31 2017 +0200 Committer: Paul Merlin <[email protected]> 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<Project> 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<Project> '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<RatTask> ) project.tasks.create( TaskNames.BUILD_SOURCE_DIST, ExecLogged, { ExecLogged task ->
