Skip to content

Commit

Permalink
use maven central to download Maven distribution
Browse files Browse the repository at this point in the history
using Apache download too much can lead to IP block
  • Loading branch information
olamy authored Jun 15, 2022
1 parent e9b5620 commit 04a0b72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export async function getMaven(version: string) {

async function downloadMaven(version: string): Promise<string> {
const toolDirectoryName = `apache-maven-${version}`
const downloadUrl =
`https://apache.org/dyn/closer.cgi?filename=maven/maven-3/${version}/binaries/${toolDirectoryName}-bin.tar.gz&action=download`
const downloadUrl =
`https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/${version}/apache-maven-${version}-bin.tar.gz`
console.log(`downloading ${downloadUrl}`)

try {
Expand Down

0 comments on commit 04a0b72

Please sign in to comment.