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/11/19 18:52:06 UTC

incubator-groovy git commit: TPL: Remove DISCLAIMER

Repository: incubator-groovy
Updated Branches:
  refs/heads/master 67b87a359 -> 576b3c5d6


TPL: Remove DISCLAIMER


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

Branch: refs/heads/master
Commit: 576b3c5d6a7022ac4a8df1ef118666456ce627fb
Parents: 67b87a3
Author: pascalschumacher <pa...@gmx.net>
Authored: Thu Nov 19 18:51:48 2015 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Thu Nov 19 18:51:48 2015 +0100

----------------------------------------------------------------------
 DISCLAIMER             | 8 --------
 gradle/assemble.gradle | 4 ----
 2 files changed, 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/576b3c5d/DISCLAIMER
----------------------------------------------------------------------
diff --git a/DISCLAIMER b/DISCLAIMER
deleted file mode 100644
index 3635349..0000000
--- a/DISCLAIMER
+++ /dev/null
@@ -1,8 +0,0 @@
-Apache Groovy is an effort undergoing incubation at The Apache Software
-Foundation (ASF) sponsored by the Apache Incubator PMC. Incubation is required
-of all newly accepted projects until a further review indicates that the
-infrastructure, communications, and decision making process have stabilized
-in a manner consistent with other successful ASF projects. While incubation
-status is not necessarily a reflection of the completeness or stability of
-the code, it does indicate that the project has yet to be fully endorsed by
-the ASF.

http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/576b3c5d/gradle/assemble.gradle
----------------------------------------------------------------------
diff --git a/gradle/assemble.gradle b/gradle/assemble.gradle
index 3ce75a9..96fd34a 100644
--- a/gradle/assemble.gradle
+++ b/gradle/assemble.gradle
@@ -76,7 +76,6 @@ ext.docSpec = copySpec {
     }
     from "$projectDir/licenses/LICENSE-DOC"
     from "$projectDir/notices/NOTICE-BASE"
-    from "$projectDir/DISCLAIMER"
     rename 'LICENSE-DOC', 'LICENSE'
     rename 'NOTICE-BASE', 'NOTICE'
 }
@@ -145,7 +144,6 @@ jar {
             include('antlr2-license.txt')
         }
         from("$projectDir/notices/NOTICE-JARJAR")
-        from 'DISCLAIMER'
         from('src/main/META-INF/groovy-release-info.properties') {
             filter(rootProject.propertiesFilter, org.apache.tools.ant.filters.ReplaceTokens)
         }
@@ -280,7 +278,6 @@ subprojects { sp ->
             } else {
                 from "${rootProject.projectDir}/notices/NOTICE-BASE"
             }
-            from "${rootProject.projectDir}/DISCLAIMER"
             from("${rootProject.projectDir}/src/main/META-INF/groovy-release-info.properties") {
                 filter(rootProject.propertiesFilter, org.apache.tools.ant.filters.ReplaceTokens)
             }
@@ -481,7 +478,6 @@ task groovydocAllJar(type: Jar, dependsOn: groovydocAll) {
 ext.distSpec = copySpec {
     from("$projectDir/licenses/LICENSE-BINZIP")
     from("$projectDir/notices/NOTICE-BINZIP")
-    from("$projectDir/DISCLAIMER")
     rename { String filename -> filename == 'LICENSE-BINZIP' ? 'LICENSE' : filename == 'NOTICE-BINZIP' ? 'NOTICE' : filename }
     into('lib') {
         from jar.archivePath