From 40d246633432a950f215d134705c212a4b9ef0dc Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sun, 29 Jan 2023 12:35:13 +0100 Subject: [PATCH] Fix build due to Jackson Javadoc publication changes The Jackson project no longer publishes Javadoc at https://fasterxml.github.io which breaks the `javadoc` and `api` build tasks due to their dependency on that web site for external Javadoc links. As a workaround, we now reference Jackson's Javadoc via https://www.javadoc.io. See https://github.com/FasterXML/jackson-databind/issues/3440 Closes gh-29895 --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 004d666f695..c813c455af3 100644 --- a/build.gradle +++ b/build.gradle @@ -377,9 +377,9 @@ configure([rootProject] + javaProjects) { project -> "https://www.eclipse.org/aspectj/doc/released/aspectj5rt-api/", "https://www.ehcache.org/apidocs/2.10.4/", "https://www.quartz-scheduler.org/api/2.3.0/", - "https://fasterxml.github.io/jackson-core/javadoc/2.10/", - "https://fasterxml.github.io/jackson-databind/javadoc/2.10/", - "https://fasterxml.github.io/jackson-dataformat-xml/javadoc/2.10/", + "https://www.javadoc.io/doc/com.fasterxml.jackson.core/jackson-core/2.12.7/", + "https://www.javadoc.io/doc/com.fasterxml.jackson.core/jackson-databind/2.12.7/", + "https://www.javadoc.io/doc/com.fasterxml.jackson.dataformat/jackson-dataformat-xml/2.12.7/", "https://hc.apache.org/httpcomponents-client-5.1.x/current/httpclient5/apidocs/", "https://projectreactor.io/docs/test/release/api/", "https://junit.org/junit4/javadoc/4.13.2/",