From f63a95ed915dd33ba7efef8e033db79e272b11ad Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 13 Aug 2018 13:00:32 +0100 Subject: [PATCH] Align link configuration with the needs of the Maven Javadoc Plugin The -link parameters passed into the javadoc executable are used as-is. For example, redirects are not followed. Unlike 3.x, 2.x of the Maven javadoc plugin does not attempt to follow redirects before links are passed to the javadoc executable. As a result, for external links to work, the links that we provide must be canonical and produce a 200 response when accessed. Closes gh-14031 --- spring-boot-docs/pom.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-boot-docs/pom.xml b/spring-boot-docs/pom.xml index 2c7e482bf6c..97fdd2c7684 100644 --- a/spring-boot-docs/pom.xml +++ b/spring-boot-docs/pom.xml @@ -785,13 +785,13 @@ true ${basedir}/src/main/javadoc/spring-javadoc.css - http://docs.oracle.com/javase/7/docs/api/ - http://docs.oracle.com/javaee/7/api/ - http://docs.spring.io/spring-framework/docs/${spring.version}/javadoc-api/ - http://docs.spring.io/autorepo/docs/spring-security/${spring-security.version}/apidocs/ - http://tomcat.apache.org/tomcat-8.0-doc/api/ + https://docs.oracle.com/javase/7/docs/api/ + https://docs.oracle.com/javaee/7/api/ + https://docs.spring.io/spring-framework/docs/${spring.version}/javadoc-api/ + https://docs.spring.io/autorepo/docs/spring-security/${spring-security.version}/apidocs/ + https://tomcat.apache.org/tomcat-8.0-doc/api/ https://www.eclipse.org/jetty/javadoc/${jetty.version}/ - http://www.thymeleaf.org/apidocs/thymeleaf/${thymeleaf.version}/ + https://www.thymeleaf.org/apidocs/thymeleaf/${thymeleaf.version}/