ok2c commented on pull request #222: URL: https://github.com/apache/httpcomponents-core/pull/222#issuecomment-688683379
@michael-o There is slight problem. It looks like the `javadoc` plugin does not work well with the new setup. I am seeing those warnings when running `mvn clean javadoc:javadoc` ``` [INFO] --- maven-javadoc-plugin:3.2.0:javadoc (default-cli) @ httpcore5 --- [INFO] Toolchain in maven-javadoc-plugin: JDK[/opt/oracle-jdk-1.7.0] [INFO] No previous run data found, generating javadoc. [INFO] 2 warnings [WARNING] Javadoc Warnings [WARNING] javadoc: warning - Error fetching URL: https://hc.apache.org/httpcomponents-core-5.0.x//httpcore5/apidocs/package-list [WARNING] javadoc: warning - Error fetching URL: https://hc.apache.org/httpcomponents-core-5.0.x//httpcore5-h2/apidocs/package-list ``` If I change link references to use `http` everything appears to be good again ``` <plugin> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <links> <link>http://hc.apache.org/httpcomponents-core-5.0.x/httpcore5/apidocs/</link> <link>http://hc.apache.org/httpcomponents-core-5.0.x/httpcore5-h2/apidocs/</link> </links> </configuration> </plugin> ``` We need to fix this one. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
