Skip to content

Commit 234ebc6

Browse files
committed
[RelEng] Migrate repo.eclipse.org links to new Nexus3 schema
Replace the last path segment in repo.eclipse.org URL using the following rules (with the project's short name): - <short_name>-snapshots -> <short_name>-maven2-snapshots - <short_name>-releases -> <short_name>-maven2-releases - <short_name> -> <short_name>-maven2
1 parent 1194244 commit 234ebc6

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

JenkinsJobs/Releng/deployToMaven.jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ then deploys the artifacts for <code>Eclipse-Platform</code>, <code>JDT</code>,
77
</p>
88
<ul>
99
<li>
10-
Snapshots are deployed to <a href="https://repo.eclipse.org/content/repositories/eclipse-snapshots/">https://repo.eclipse.org/content/repositories/eclipse-snapshots/</a>.
10+
Snapshots are deployed to the <a href="https://repo.eclipse.org/content/repositories/eclipse-maven2-snapshots/">eclipse-maven2-snapshots/</a> repository.
1111
</li>
1212
<li>
1313
Releases are published to <a href="https://repo1.maven.org/maven2/org/eclipse/">Maven central</a> through the <a href="https://central.sonatype.org/publish/publish-portal-guide/">Central Portal</a>.
@@ -31,7 +31,7 @@ pipeline {
3131
If left blank (not recommended), the latest I-build is deployed.
3232
<ul>
3333
<li>
34-
Snapshots are deployed to <a href="https://repo.eclipse.org/content/repositories/eclipse-snapshots/">https://repo.eclipse.org/content/repositories/eclipse-snapshots/</a>.
34+
Snapshots are deployed to the <a href="https://repo.eclipse.org/content/repositories/eclipse-maven2-snapshots/">eclipse-maven2-snapshots/</a> repository.
3535
</li>
3636
<li>
3737
Releases are published to <a href="https://repo1.maven.org/maven2/org/eclipse/">Maven central</a> through the <a href="https://central.sonatype.org/publish/publish-portal-guide/">Central Portal</a>.
@@ -144,7 +144,7 @@ pipeline {
144144
set +x
145145
pomFolder=$(dirname ${pomFile})
146146
if [ "${DEPLOYMENT_TYPE}" != 'release' ]; then
147-
URL=https://repo.eclipse.org/content/repositories/eclipse-snapshots/
147+
URL=https://repo.eclipse.org/content/repositories/eclipse-maven2-snapshots/
148148
REPO_ID=repo.eclipse.org # server-id in the settings.xml, used for authentication
149149
MAVEN_CENTRAL_URL=https://repo1.maven.org/maven2/${pomFolder%-SNAPSHOT}
150150
echo "Checking ${MAVEN_CENTRAL_URL}"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The job with the highest release number is the one that builds nightly SDK build
7171
- If the tests fail to start, test jobs for each platform can be found at https://ci.eclipse.org/releng/job/AutomatedTests/
7272
- If the build is successful but relevant functionality is severely broken and the build shouldn't be used, the build can be marked as unstable via the [Mark Build](https://ci.eclipse.org/releng/job/Builds/job/markBuild/) job.
7373
- Daily Maven snapshots are provided by the [Deploy To Maven](https://ci.eclipse.org/releng/job/Releng/job/deployToMaven) job
74-
and are available from https://repo.eclipse.org/content/repositories/eclipse-snapshots/
74+
and are available from https://repo.eclipse.org/content/repositories/eclipse-maven2-snapshots/
7575

7676
Milestone and release tasks
7777
-----------------

eclipse-platform-parent/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,16 @@
8282
<comparator.repo>${eclipse-sdk-repo}</comparator.repo>
8383

8484
<!-- only used when Tycho snapshot repo is enabled in <pluginRepositories> further down -->
85-
<tycho-snapshot-repo.url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</tycho-snapshot-repo.url>
85+
<tycho-snapshot-repo.url>https://repo.eclipse.org/content/repositories/tycho-maven2-snapshots/</tycho-snapshot-repo.url>
8686

87-
<eclipse-snapshots-repo.url>https://repo.eclipse.org/content/repositories/eclipse-snapshots/</eclipse-snapshots-repo.url>
87+
<eclipse-snapshots-repo.url>https://repo.eclipse.org/content/repositories/eclipse-maven2-snapshots/</eclipse-snapshots-repo.url>
8888
<cbi-ecj-version>[3.39,)</cbi-ecj-version>
8989

9090
<!--
9191
repo for released versions of CBI. Note, we intentionally use as specific a repo as possible.
9292
See bug 471835.
9393
-->
94-
<eclipse-cbi-repo.url>https://repo.eclipse.org/content/repositories/cbi/</eclipse-cbi-repo.url>
94+
<eclipse-cbi-repo.url>https://repo.eclipse.org/content/repositories/cbi-maven2/</eclipse-cbi-repo.url>
9595

9696
<!--
9797
This eclipse-p2-repo.url is specifically for the build-individual-bundles profile.
@@ -161,12 +161,12 @@
161161
<repository>
162162
<id>repo.eclipse.org</id>
163163
<name>Eclipse Repository - Releases</name>
164-
<url>https://repo.eclipse.org/content/repositories/eclipse-releases/</url>
164+
<url>https://repo.eclipse.org/content/repositories/eclipse-maven2-releases/</url>
165165
</repository>
166166
<snapshotRepository>
167167
<id>repo.eclipse.org</id>
168168
<name>Eclipse Repository - Snapshots</name>
169-
<url>https://repo.eclipse.org/content/repositories/eclipse-snapshots/</url>
169+
<url>https://repo.eclipse.org/content/repositories/eclipse-maven2-snapshots/</url>
170170
</snapshotRepository>
171171
</distributionManagement>
172172
<pluginRepositories>

eclipse.platform.common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<enabled>true</enabled>
7070
</snapshots>
7171
<id>eclipse-hosted</id>
72-
<url>https://repo.eclipse.org/content/repositories/eclipse/</url>
72+
<url>https://repo.eclipse.org/content/repositories/eclipse-maven2/</url>
7373
</repository>
7474
</repositories>
7575
</profile>

eclipse.platform.releng/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<enabled>true</enabled>
4444
</snapshots>
4545
<id>eclipse-hosted</id>
46-
<url>https://repo.eclipse.org/content/repositories/eclipse/</url>
46+
<url>https://repo.eclipse.org/content/repositories/eclipse-maven2/</url>
4747
</repository>
4848
</repositories>
4949
</profile>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<pluginRepositories>
2525
<pluginRepository>
2626
<id>tycho-snapshots</id>
27-
<url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
27+
<url>https://repo.eclipse.org/content/repositories/tycho-maven2-snapshots/</url>
2828
</pluginRepository>
2929
</pluginRepositories>
3030
<modules>

0 commit comments

Comments
 (0)