This is an automated email from the ASF dual-hosted git repository.
remm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 1185ad1154 Add message when not using Java 22 for release
1185ad1154 is described below
commit 1185ad1154cdbb8003efd29eeb1ccf95c87bdc56
Author: remm <[email protected]>
AuthorDate: Tue Oct 24 11:15:44 2023 +0200
Add message when not using Java 22 for release
Filter out packages with FFM API from javadoc.
---
build.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/build.xml b/build.xml
index 12c720846e..e3cca8f964 100644
--- a/build.xml
+++ b/build.xml
@@ -2366,6 +2366,8 @@
<include name="org/**"/>
<exclude name="org/apache/el/parser/**"/>
<exclude name="org/apache/tomcat/util/json/**"/>
+ <exclude name="org/apache/tomcat/util/net/openssl/panama/**"/>
+ <exclude name="org/apache/tomcat/util/openssl/**"/>
</packageset>
<!--jdbc-pool src files for javadoc-->
<packageset dir="${tomcat.dist}/src/modules/jdbc-pool/src/main/java"/>
@@ -2654,6 +2656,10 @@ skip.installer property in build.properties" />
<not><javaversion atleast="${release.java.version}" /></not>
</condition>
</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: [email protected]
For additional commands, e-mail: [email protected]