503s when trying to download plugins from the latest I-Build
Summary
I am running mvn install -pl org.eclipse.jdt.core.compiler.batch,org.eclipse.jdt.core,,org.eclipse.jdt.core.tests.compiler,org.eclipse.jdt.core.tests.model,org.eclipse.jdt.core.javac -DskipTests
in the following project: https://github.com/eclipse-jdtls/eclipse-jdt-core-incubator with an empty maven repo. This downloads a bunch of dependencies from the following p2 repo: https://download.eclipse.org/eclipse/updates/4.36-I-builds/I20250304-1800
While attempting downloading these dependencies, Maven reports that the download of one of the plugins failed with the error code 503. The specific jar that causes the failure is different each time.
Steps to reproduce
- Clone https://github.com/eclipse-jdtls/eclipse-jdt-core-incubator
- Make a directory to use as an empty Maven repo (eg.
myEmptyRepo
) -
mvn install -pl org.eclipse.jdt.core.compiler.batch,org.eclipse.jdt.core,,org.eclipse.jdt.core.tests.compiler,org.eclipse.jdt.core.tests.model,org.eclipse.jdt.core.javac -DskipTests -Dmaven.repo.local=myEmptyRepo
(replace myEmptyRepo with the path to the empty directory you made in step 2)
What is the current bug behavior?
Build fails due to a 503 when downloading dependency plugins from the I-Builds P2 repo
What is the expected correct behavior?
Installs the code into the temporary Maven repository
Relevant logs and/or screenshots
[ERROR] Could not mirror artifact osgi.bundle,org.eclipse.e4.core.di.annotations.source,1.8.400.v20240413-1529 into the local Maven repository.See log output for details. Server returned HTTP code: 503 for URL https://download.eclipse.org/eclipse/updates/4.36-I-builds/I20250304-1800/plugins/org.eclipse.e4.core.di.annotations.source_1.8.400.v20240413-1529.jar
Priority
- Urgent
- High
- Medium
- Low
Severity
- Blocker
- Major
- Normal
- Low
Impact
Preventing me from running the tests locally to check my work, so I'll have to find some other project to work on in the mean time.