Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit b49fc92

Browse files
authored
Add MavenCentral in place of repo.spring.io/release (#101) (#1906)
See spring-attic/spring-cloud-dataflow#5193 Add MavenCentral lib-milestone to account for missing dependency See spring-attic/spring-cloud-dataflow#5194
1 parent 37eb5d7 commit b49fc92

File tree

2 files changed

+38
-13
lines changed

2 files changed

+38
-13
lines changed

.github/settings.xml

Lines changed: 29 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,23 @@
66
<repository>
77
<id>spring-staging</id>
88
<name>Spring Staging</name>
9-
<url>https://repo.spring.io/libs-staging-local</url>
9+
<url>https://repo.spring.io/staging</url>
1010
<snapshots>
1111
<enabled>false</enabled>
1212
</snapshots>
1313
</repository>
1414
<repository>
1515
<id>spring-milestones</id>
1616
<name>Spring Milestones</name>
17-
<url>https://repo.spring.io/libs-milestone</url>
17+
<url>https://repo.spring.io/milestone</url>
1818
<snapshots>
1919
<enabled>false</enabled>
2020
</snapshots>
2121
</repository>
2222
<repository>
23-
<id>spring-releases</id>
24-
<name>Spring Releases</name>
25-
<url>https://repo.spring.io/libs-release</url>
23+
<id>maven-central</id>
24+
<name>Maven Central</name>
25+
<url>https://repo.maven.apache.org/maven2</url>
2626
<snapshots>
2727
<enabled>false</enabled>
2828
</snapshots>
@@ -32,19 +32,27 @@
3232
<pluginRepository>
3333
<id>spring-staging</id>
3434
<name>Spring Staging</name>
35-
<url>https://repo.spring.io/libs-staging-local</url>
35+
<url>https://repo.spring.io/staging</url>
3636
<snapshots>
3737
<enabled>false</enabled>
3838
</snapshots>
3939
</pluginRepository>
4040
<pluginRepository>
4141
<id>spring-milestones</id>
4242
<name>Spring Milestones</name>
43-
<url>https://repo.spring.io/libs-milestone</url>
43+
<url>https://repo.spring.io/milestone</url>
4444
<snapshots>
4545
<enabled>false</enabled>
4646
</snapshots>
47-
</pluginRepository>
47+
</pluginRepository>
48+
<pluginRepository>
49+
<id>maven-central</id>
50+
<name>Maven Central</name>
51+
<url>https://repo.maven.apache.org/maven2</url>
52+
<snapshots>
53+
<enabled>false</enabled>
54+
</snapshots>
55+
</pluginRepository>
4856
</pluginRepositories>
4957
</profile>
5058
<profile>
@@ -53,15 +61,15 @@
5361
<repository>
5462
<id>spring-staging</id>
5563
<name>Spring Staging</name>
56-
<url>https://repo.spring.io/libs-staging-local</url>
64+
<url>https://repo.spring.io/staging</url>
5765
<snapshots>
5866
<enabled>false</enabled>
5967
</snapshots>
6068
</repository>
6169
<repository>
62-
<id>spring-releases</id>
63-
<name>Spring Releases</name>
64-
<url>https://repo.spring.io/libs-release</url>
70+
<id>maven-central</id>
71+
<name>Maven Central</name>
72+
<url>https://repo.maven.apache.org/maven2</url>
6573
<snapshots>
6674
<enabled>false</enabled>
6775
</snapshots>
@@ -71,7 +79,15 @@
7179
<pluginRepository>
7280
<id>spring-staging</id>
7381
<name>Spring Staging</name>
74-
<url>https://repo.spring.io/libs-staging-local</url>
82+
<url>https://repo.spring.io/staging</url>
83+
<snapshots>
84+
<enabled>false</enabled>
85+
</snapshots>
86+
</pluginRepository>
87+
<pluginRepository>
88+
<id>maven-central</id>
89+
<name>Maven Central</name>
90+
<url>https://repo.maven.apache.org/maven2</url>
7591
<snapshots>
7692
<enabled>false</enabled>
7793
</snapshots>

pom.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,15 @@
180180
<profile>
181181
<id>spring</id>
182182
<repositories>
183+
<repository>
184+
<id>maven-central</id>
185+
<name>Maven Central</name>
186+
<url>https://repo.maven.apache.org/maven2</url>
187+
<snapshots>
188+
<enabled>false</enabled>
189+
</snapshots>
190+
</repository>
191+
<!-- TODO remove once https://github.com/spring-cloud/spring-cloud-dataflow/issues/5194 resolved -->
183192
<repository>
184193
<id>repo.spring.io.milestone</id>
185194
<name>Spring Maven Milestone Repository</name>

0 commit comments

Comments
 (0)