Repository: groovy
Updated Branches:
  refs/heads/master 69559130f -> fcc9cb40a


ignore some CI files for rat and src zip


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/fcc9cb40
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/fcc9cb40
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/fcc9cb40

Branch: refs/heads/master
Commit: fcc9cb40a5df0d435a1045e828f99ab2016eb551
Parents: 6955913
Author: paulk <pa...@asert.com.au>
Authored: Fri Feb 23 18:36:34 2018 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Fri Feb 23 18:36:34 2018 +1000

----------------------------------------------------------------------
 gradle/assemble.gradle | 5 +++++
 gradle/quality.gradle  | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/fcc9cb40/gradle/assemble.gradle
----------------------------------------------------------------------
diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle
index 06462b2..9a152fd 100644
--- a/gradle/assemble.gradle
+++ b/gradle/assemble.gradle
@@ -28,12 +28,17 @@ archivesBaseName = 'groovy'
 ext.srcSpec = copySpec {
     from(projectDir) {
         exclude 'target',
+                'build',
                 'benchmark',
                 'subprojects/*/target',
                 'buildSrc/target',
                 buildDir.path,
                 'classes/**',
                 'cruise/**',
+                'src/install/**', // CI file
+                '.travis.yml', // CI file
+                'appveyor.yml', // CI file
+                'jitpack.yml', // CI file
                 'security/groovykeys',
                 '.clover/*',
                 'local.build.properties',

http://git-wip-us.apache.org/repos/asf/groovy/blob/fcc9cb40/gradle/quality.gradle
----------------------------------------------------------------------
diff --git a/gradle/quality.gradle b/gradle/quality.gradle
index be916fd..d9b13f6 100644
--- a/gradle/quality.gradle
+++ b/gradle/quality.gradle
@@ -161,7 +161,7 @@ subprojects { sp ->
     }
     rat {
         inputDir = sp.projectDir.absolutePath
-        excludes = [ 'target/**', '.gradle/**', '*.iml', '.classpath', 
'.project', '.settings/**', 'bin/**' , *extras]
+        excludes = [ 'target/**', 'build/**', '.gradle/**', '*.iml', 
'.classpath', '.project', '.settings/**', 'bin/**' , *extras]
     }
 }
 
@@ -169,11 +169,12 @@ rat {
     excludes = [ 'subprojects/**', // covered above
                  'benchmark/**', // benchmarking files excluded from src zip
                  'config/**',
+                 'src/install/**', // CI file excluded from src zip
                  'src/test/org/codehaus/groovy/ast/LineColumnCheck.txt', // 
test file
                  'security/groovykeys', // excluded from src zip
                  '**/.gradle/**', '**/wrapper/**', 'gradlew*',  // gradle 
wrapper files excluded from src zip
                  'gradle.properties',  // artifactory release plugin removes 
header when bumping version
-                 '**/target/**', 'licenses/**', 'notices/**',
+                 '**/target/**', '**/build/**', 'licenses/**', 'notices/**',
                  'out/**', '*.ipr',  '**/*.iml', '*.iws', // Intellij files
                  '**/style.css', // MIT license as per NOTICE/LICENSE files
                  '**/jquery-2.1.1.min.js', // MIT license as per 
NOTICE/LICENSE files

Reply via email to