Hi there,
I'm trying to compile an old branch and verify whether a code audit product works.
git checkout v4.3.10.RELEASE
./gradlew build
And several packages are missing:
* What went wrong:
Execution failed for task ':spring-core:cglibRepackJar'.
> Could not resolve all dependencies for configuration ':spring-core:jarjar'.
> Could not resolve com.googlecode.jarjar:jarjar:1.3.
Required by:
org.springframework:spring-core:4.3.10.RELEASE
> Could not resolve com.googlecode.jarjar:jarjar:1.3.
> Could not get resource 'https://repo.spring.io/libs-release/com/googlecode/jarjar/jarjar/1.3/jarjar-1.3.pom'.
> Could not GET 'https://repo.spring.io/libs-release/com/googlecode/jarjar/jarjar/1.3/jarjar-1.3.pom'. Received status code 401 from server: Unauthorized
Any suggestions?
Comment From: bclozel
You might want to add mavenCentral()
as a main location for resolving artifacts in the repositories
DSL block.