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

remm pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/10.1.x by this push:
     new 2ee3c2e22f Revert "Add Java 22+ check for release"
2ee3c2e22f is described below

commit 2ee3c2e22f0935b0d3ad1a3009b01db50d2c18c5
Author: remm <r...@apache.org>
AuthorDate: Wed Apr 10 23:45:34 2024 +0200

    Revert "Add Java 22+ check for release"
    
    This reverts commit 8803269601aa83fe356ee7b1c72727ae2aace004.
---
 build.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index 19e575a11e..7c4cbfaadf 100644
--- a/build.xml
+++ b/build.xml
@@ -2699,11 +2699,16 @@ skip.installer property in build.properties" />
   </target>
 
   <target name="release-version-check">
+    <!--FIXME: add version check for release once Java 22 has reasonable 
availability
     <fail message="Java version ${release.java.version} or newer is required 
for release (${java.version} is installed)">
       <condition>
         <not><javaversion atleast="${release.java.version}" /></not>
       </condition>
-    </fail>
+    </fail>-->
+    <condition property="no-ffm">
+      <not><javaversion atleast="${release.java.version}" /></not>
+    </condition>
+    <echo level="error" if:set="no-ffm">JAVA VERSION 22 OR NEWER IS REQUIRED 
FOR RELEASE</echo>
   </target>
 
   <target name="-pre-release-lone-target-check">


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to