Skip to content

Commit

Permalink
Change end year in various notices (using updateNotices task)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulk-asert committed Jan 3, 2017
1 parent 98fc12d commit 3e2d5fd
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion gradle/docs.gradle
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ task doc(dependsOn: ['javadocAll', 'groovydocAll', 'docGDK']) {
if (JavaVersion.current().java7Compatible) { if (JavaVersion.current().java7Compatible) {
dependsOn 'asciidocAll', 'assembleAsciidoc' dependsOn 'asciidocAll', 'assembleAsciidoc'
} }
ext.footer = 'Copyright © 2003-2016 The Apache Software Foundation. All rights reserved.' ext.footer = 'Copyright © 2003-2017 The Apache Software Foundation. All rights reserved.'
ext.title = "Groovy ${groovyVersion}" ext.title = "Groovy ${groovyVersion}"
} }


Expand Down
2 changes: 1 addition & 1 deletion notices/NOTICE-ALLJARJAR
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion notices/NOTICE-BASE
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
2 changes: 1 addition & 1 deletion notices/NOTICE-BINZIP
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion notices/NOTICE-GROOID
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion notices/NOTICE-GROOIDJARJAR
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion notices/NOTICE-JARJAR
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion notices/NOTICE-SDK
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down
2 changes: 1 addition & 1 deletion src/main/org/codehaus/groovy/tools/FileSystemCompiler.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static void displayHelp(final Options options) {
public static void displayVersion() { public static void displayVersion() {
String version = GroovySystem.getVersion(); String version = GroovySystem.getVersion();
System.err.println("Groovy compiler version " + version); System.err.println("Groovy compiler version " + version);
System.err.println("Copyright 2003-2016 The Apache Software Foundation. http://groovy-lang.org/"); System.err.println("Copyright 2003-2017 The Apache Software Foundation. http://groovy-lang.org/");
System.err.println(""); System.err.println("");
} }


Expand Down
2 changes: 1 addition & 1 deletion subprojects/groovy-console/NOTICE
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,5 @@
Apache Groovy Apache Groovy
Copyright 2003-2016 The Apache Software Foundation Copyright 2003-2017 The Apache Software Foundation


This product includes software developed at This product includes software developed at
The Apache Software Foundation (http://www.apache.org/). The Apache Software Foundation (http://www.apache.org/).
Expand Down

0 comments on commit 3e2d5fd

Please sign in to comment.