diff --git a/docs-home/modules/ROOT/pages/index.adoc b/docs-home/modules/ROOT/pages/index.adoc index 59a2285..52ea1c5 100644 --- a/docs-home/modules/ROOT/pages/index.adoc +++ b/docs-home/modules/ROOT/pages/index.adoc @@ -10,20 +10,20 @@ s|Jetty 12 |xref:12@jetty:operations-guide:index.adoc[] + xref:12@jetty:programming-guide:index.adoc[] -|https://eclipse.dev/jetty/javadoc/jetty-12/index.html?overview-summary.html[api] / +|https://javadoc.jetty.org/jetty-12/index.html[api] / https://github.com/eclipse/jetty.project/tree/jetty-12.0.x[source] s|Jetty 11 |xref:11@jetty:operations-guide:index.adoc[] + xref:11@jetty:programming-guide:index.adoc[] -|https://eclipse.dev/jetty/javadoc/jetty-11/index.html?overview-summary.html[api] / +|https://javadoc.jetty.org/jetty-11/index.html[api] / https://github.com/eclipse/jetty.project/tree/jetty-11.0.x[source] s|Jetty 10 |xref:10@jetty:operations-guide:index.adoc[] + xref:10@jetty:programming-guide:index.adoc[] -|https://eclipse.dev/jetty/javadoc/jetty-10/index.html?overview-summary.html[api] / +|https://javadoc.jetty.org/jetty-10/index.html[api] / https://github.com/eclipse/jetty.project/tree/jetty-10.0.x[source] |=== diff --git a/lib/jetty-downloads-extension.js b/lib/jetty-downloads-extension.js index 83ae79f..e038dac 100644 --- a/lib/jetty-downloads-extension.js +++ b/lib/jetty-downloads-extension.js @@ -1,7 +1,7 @@ 'use strict' const MAVEN_REPO_URL = 'https://repo1.maven.org/maven2' -const JAVADOC_ROOT_URL = 'https://eclipse.dev/jetty/javadoc' +const JAVADOC_ROOT_URL = 'https://javadoc.jetty.org' const REPOSITORY = 'jetty/jetty.project' const GROUP_ID = 'org.eclipse.jetty' const ARTIFACT_ID = 'jetty-home' @@ -53,7 +53,7 @@ function collectLatestReleases ({ octokit, owner, repo, firstMajorVersion, lastM zip, zipHash, url: release.html_url, - api: `${JAVADOC_ROOT_URL}/jetty-${majorVersion}/index.html?overview-summary.html`, + api: `${JAVADOC_ROOT_URL}/jetty-${majorVersion}/index.html`, } } if (lastMajorVersion && createRange(firstMajorVersion, lastMajorVersion).every((it) => it in accum)) return accum