This is an automated email from the ASF dual-hosted git repository.

jdaugherty pushed a commit to branch graduation
in repository https://gitbox.apache.org/repos/asf/grails-gradle-publish.git

commit e1a6357e30eaa4559e820ec7e02e4318081b7a2f
Author: James Daugherty <[email protected]>
AuthorDate: Sun Oct 5 11:01:14 2025 -0400

    chore: update for TLP Graduation
---
 .github/release-drafter.yml           | 4 ----
 DISCLAIMER                            | 1 -
 etc/bin/verify-jar-artifacts.sh       | 2 +-
 etc/bin/verify-source-distribution.sh | 2 +-
 gradle/java-config.gradle             | 4 ----
 5 files changed, 2 insertions(+), 11 deletions(-)

diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml
index 7c1bbc8..60229c5 100644
--- a/.github/release-drafter.yml
+++ b/.github/release-drafter.yml
@@ -140,10 +140,6 @@ version-resolver:
       - 'type: patch'
   default: patch
 template: |
-  ## Disclaimer: Release Created While Under Incubation
-  
-  Apache Grails is an effort undergoing incubation at The Apache Software 
Foundation (ASF), sponsored by the Apache Groovy Project. 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 p [...]
-  
   ## What's Changed
 
   $CHANGES
diff --git a/DISCLAIMER b/DISCLAIMER
deleted file mode 100644
index d5b62af..0000000
--- a/DISCLAIMER
+++ /dev/null
@@ -1 +0,0 @@
-Apache Grails is an effort undergoing incubation at The Apache Software 
Foundation (ASF), sponsored by the Apache Groovy Project. 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 pro [...]
\ No newline at end of file
diff --git a/etc/bin/verify-jar-artifacts.sh b/etc/bin/verify-jar-artifacts.sh
index 1be6930..b0d69be 100755
--- a/etc/bin/verify-jar-artifacts.sh
+++ b/etc/bin/verify-jar-artifacts.sh
@@ -131,7 +131,7 @@ while IFS= read -r line; do
 
   if [[ $JAR_FILE != *-javadoc.jar ]]; then
       echo "... Verifying required files exist in non-javadoc jar..."
-        required_jar_contents=(META-INF/LICENSE META-INF/DISCLAIMER 
META-INF/NOTICE)
+        required_jar_contents=(META-INF/LICENSE META-INF/NOTICE)
         missing_jar_contents=()
         for entry in "${required_jar_contents[@]}"; do
             if ! jar tf "${JAR_FILE}" | grep -qF -- "${entry}"; then
diff --git a/etc/bin/verify-source-distribution.sh 
b/etc/bin/verify-source-distribution.sh
index d1f041c..1995474 100755
--- a/etc/bin/verify-source-distribution.sh
+++ b/etc/bin/verify-source-distribution.sh
@@ -77,7 +77,7 @@ if [ ! -d "${SRC_DIR}" ]; then
 fi
 
 echo "Checking for required files existence..."
-REQUIRED_FILES=("LICENSE" "NOTICE" "README.md" "PUBLISHED_ARTIFACTS" 
"CHECKSUMS" "BUILD_DATE" "DISCLAIMER")
+REQUIRED_FILES=("LICENSE" "NOTICE" "README.md" "PUBLISHED_ARTIFACTS" 
"CHECKSUMS" "BUILD_DATE")
 
 for FILE in "${REQUIRED_FILES[@]}"; do
   if [ ! -f "${SRC_DIR}/$FILE" ]; then
diff --git a/gradle/java-config.gradle b/gradle/java-config.gradle
index 5a1c568..546ee60 100644
--- a/gradle/java-config.gradle
+++ b/gradle/java-config.gradle
@@ -63,10 +63,6 @@ tasks.withType(Jar).configureEach {
     )
 
     if (it.archiveClassifier.getOrNull() != 'javadoc') {
-        from(rootProject.layout.projectDirectory.file('DISCLAIMER')) {
-            into('META-INF')
-        }
-
         from(rootProject.layout.projectDirectory.file('LICENSE')) {
             into('META-INF')
             rename { 'LICENSE' }

Reply via email to