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

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


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 79c3a6d9b0 Compatibility with javadoc 24+
79c3a6d9b0 is described below

commit 79c3a6d9b0337d6c2be5b3ce8d44f97fd7d7639e
Author: remm <r...@apache.org>
AuthorDate: Wed Apr 2 10:37:02 2025 +0200

    Compatibility with javadoc 24+
    
    New javadoc 24+ uses a "element-list" resource that lists packages,
    which is generated by javadoc 10+.
    Old javadoc did not generate this resource, as a result an error occurs.
    Instead switch to Java 11 for API links. Maybe the issue will be worked
    around in javadoc so this could be reverted.
---
 build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index 96af34164c..7dc62dbd69 100644
--- a/build.xml
+++ b/build.xml
@@ -2437,7 +2437,7 @@ Apache Tomcat ${version} native binaries for Win64 
AMD64/EMT64 platform.
       <link href="../elapi"/>
       <link href="../websocketapi"/>
       <link href="../jaspicapi"/>
-      <link href="https://docs.oracle.com/javase/8/docs/api/"/>
+      <link href="https://docs.oracle.com/en/java/javase/11/docs/api/"/>
       <link href="https://javaee.github.io/javaee-spec/javadocs/"/>
       <packageset dir="${tomcat.dist}/src/java/">
         <include name="org/**"/>


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

Reply via email to