jira-importer commented on issue #849: URL: https://github.com/apache/maven-javadoc-plugin/issues/849#issuecomment-2957357465
**[Gili](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cowwoc)** commented Lets say I skip the integration test for a moment, when I try invoking the "aggregate" goal with: ```java <javaApiLinks> <property> <name>api_12</name> <value>https://download.java.net/java/early_access/jdk12/docs/api/</value> </property> </javaApiLinks> ``` I get a `NullPointerException` on `AbstractJavadocMojo.getDefaultJavadocApiLink()` because it tries reading `java-api-element-list-12` which does not exist. It looks like you have such files for JDK 1.3 through 11 but nothing for 12. I tried using `<source>11</source>` instead. This did not throw an exception but JDK classes were not linked in the output. How do I get JDK 12 to build Javadoc that links to the online Java 11 documentation? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
