You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2015/06/30 10:24:59 UTC

incubator-groovy git commit: rat tweaks

Repository: incubator-groovy
Updated Branches:
  refs/heads/master 6e1ac0886 -> f8f3f4f31


rat tweaks


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

Branch: refs/heads/master
Commit: f8f3f4f31932ecc0d743fc462b656e8ae2526fc7
Parents: 6e1ac08
Author: Paul King <pa...@asert.com.au>
Authored: Tue Jun 30 18:24:30 2015 +1000
Committer: Paul King <pa...@asert.com.au>
Committed: Tue Jun 30 18:24:30 2015 +1000

----------------------------------------------------------------------
 gradle/assemble.gradle | 1 +
 gradle/quality.gradle  | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/f8f3f4f3/gradle/assemble.gradle
----------------------------------------------------------------------
diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle
index e3fa806..11550f4 100644
--- a/gradle/assemble.gradle
+++ b/gradle/assemble.gradle
@@ -44,6 +44,7 @@ ext.srcSpec = copySpec {
                 buildDir.path,
                 'classes/**',
                 'cruise/**',
+                'security/groovykeys',
                 '.clover/*',
                 'local.build.properties',
                 'gradle/wrapper',

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/f8f3f4f3/gradle/quality.gradle
----------------------------------------------------------------------
diff --git a/gradle/quality.gradle b/gradle/quality.gradle
index 0552719..914b707 100644
--- a/gradle/quality.gradle
+++ b/gradle/quality.gradle
@@ -151,9 +151,10 @@ rat {
     excludes = [ 'subprojects/**', // covered above
                  'benchmark/**', // benchmarking files excluded from src zip
                  'config/**',
+                 'security/groovykeys', // excluded from src zip
                  '**/.gradle/**', '**/wrapper/**', 'gradlew*',  // gradle wrapper files excluded from src zip
                  '**/target/**', 'licenses/**',
-                 '*.ipr',  '*.iml', '*.iws', // Intellij files
+                 'out/**', '*.ipr',  '**/*.iml', '*.iws', // Intellij files
                  '**/assets/**', '**/*.gif', '**/*.png', '**/*.icns' // various image files
     ]
     failOnError = false