This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new 615038be03 prep for 2026: update year in notices and docs
615038be03 is described below
commit 615038be0372e398675824344b34e5dc6d67ef98
Author: Paul King <[email protected]>
AuthorDate: Fri Jan 2 08:35:31 2026 +1000
prep for 2026: update year in notices and docs
---
NOTICE | 2 +-
build-logic/src/main/groovy/org.apache.groovy-documented.gradle | 4 ++--
notices/NOTICE-BASE | 2 +-
notices/NOTICE-BINZIP | 2 +-
notices/NOTICE-GROOID | 2 +-
notices/NOTICE-GROOIDJARJAR | 2 +-
notices/NOTICE-JARJAR | 2 +-
notices/NOTICE-SDK | 2 +-
src/main/java/org/codehaus/groovy/tools/FileSystemCompiler.java | 2 +-
subprojects/groovy-console/NOTICE | 2 +-
10 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/NOTICE b/NOTICE
index d945b2c8c8..9c50a2d090 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/build-logic/src/main/groovy/org.apache.groovy-documented.gradle
b/build-logic/src/main/groovy/org.apache.groovy-documented.gradle
index 223c777e1d..b4ebb4f941 100644
--- a/build-logic/src/main/groovy/org.apache.groovy-documented.gradle
+++ b/build-logic/src/main/groovy/org.apache.groovy-documented.gradle
@@ -57,7 +57,7 @@ tasks.withType(Javadoc).configureEach {
encoding = 'UTF-8'
version = true
overview =
project.relativePath(rootProject.file('src/main/java/overviewj.html'))
- bottom = 'Copyright © 2003-2025 The Apache Software Foundation.
All rights reserved.'
+ bottom = 'Copyright © 2003-2026 The Apache Software Foundation.
All rights reserved.'
source = sharedConfiguration.targetJavaVersion.get()
links('https://docs.oracle.com/en/java/javase/11/docs/api/',
'https://docs.oracle.com/javaee/7/api/',
@@ -78,7 +78,7 @@ tasks.withType(Groovydoc).configureEach {
windowTitle = "Groovy ${versions.groovy}"
docTitle = "Groovy ${versions.groovy}"
header = "Groovy ${versions.groovy}"
- footer = 'Copyright © 2003-2025 The Apache Software Foundation. All
rights reserved.'
+ footer = 'Copyright © 2003-2026 The Apache Software Foundation. All
rights reserved.'
overviewText =
rootProject.resources.text.fromFile('src/main/java/overview.html')
access = GroovydocAccess.PROTECTED
link 'https://docs.oracle.com/javaee/7/api/', 'javax.servlet.',
'javax.management.'
diff --git a/notices/NOTICE-BASE b/notices/NOTICE-BASE
index 7017b28fc3..bc165c713b 100644
--- a/notices/NOTICE-BASE
+++ b/notices/NOTICE-BASE
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/notices/NOTICE-BINZIP b/notices/NOTICE-BINZIP
index 82b9b61f5f..f96e465ef3 100644
--- a/notices/NOTICE-BINZIP
+++ b/notices/NOTICE-BINZIP
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/notices/NOTICE-GROOID b/notices/NOTICE-GROOID
index 8cf98521ce..32031674dd 100644
--- a/notices/NOTICE-GROOID
+++ b/notices/NOTICE-GROOID
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/notices/NOTICE-GROOIDJARJAR b/notices/NOTICE-GROOIDJARJAR
index 29eb15d374..f9c7430542 100644
--- a/notices/NOTICE-GROOIDJARJAR
+++ b/notices/NOTICE-GROOIDJARJAR
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/notices/NOTICE-JARJAR b/notices/NOTICE-JARJAR
index afeb04d042..61307ca75f 100644
--- a/notices/NOTICE-JARJAR
+++ b/notices/NOTICE-JARJAR
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/notices/NOTICE-SDK b/notices/NOTICE-SDK
index 9c0ea40e56..7fac46493e 100644
--- a/notices/NOTICE-SDK
+++ b/notices/NOTICE-SDK
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).
diff --git a/src/main/java/org/codehaus/groovy/tools/FileSystemCompiler.java
b/src/main/java/org/codehaus/groovy/tools/FileSystemCompiler.java
index cb4d35cd40..02e0e49234 100644
--- a/src/main/java/org/codehaus/groovy/tools/FileSystemCompiler.java
+++ b/src/main/java/org/codehaus/groovy/tools/FileSystemCompiler.java
@@ -326,7 +326,7 @@ public class FileSystemCompiler {
public String[] getVersion() {
return new String[]{
"Groovy compiler version " + GroovySystem.getVersion(),
- "Copyright 2003-2025 The Apache Software Foundation.
https://groovy-lang.org/",
+ "Copyright 2003-2026 The Apache Software Foundation.
https://groovy-lang.org/",
"",
};
}
diff --git a/subprojects/groovy-console/NOTICE
b/subprojects/groovy-console/NOTICE
index cfc7dac5ba..04344c6d3e 100644
--- a/subprojects/groovy-console/NOTICE
+++ b/subprojects/groovy-console/NOTICE
@@ -1,5 +1,5 @@
Apache Groovy
-Copyright 2003-2025 The Apache Software Foundation
+Copyright 2003-2026 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).