Skip to content

Commit

Permalink
fix javadoc links
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Lamy <[email protected]>
  • Loading branch information
olamy committed May 30, 2024
1 parent 52e4088 commit 8100022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jetty-downloads-extension.js
Original file line number Diff line number Diff line change
@@ -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'
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8100022

Please sign in to comment.