Skip to content

Commit d4bbdcb

Browse files
committed
Use snapshot and milestone repositories instead of libs-snapshot and libs-milestone.
Closes #1387
1 parent 699d380 commit d4bbdcb

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ If you'd rather like the latest snapshots of the upcoming major version, use our
102102
</dependency>
103103
104104
<repository>
105-
<id>spring-libs-snapshot</id>
105+
<id>spring-snapshot</id>
106106
<name>Spring Snapshot Repository</name>
107-
<url>https://repo.spring.io/libs-snapshot</url>
107+
<url>https://repo.spring.io/snapshot</url>
108108
</repository>
109109
----
110110

pom.xml

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,6 @@
100100
<springdata.commons>3.2.0-SNAPSHOT</springdata.commons>
101101
</properties>
102102

103-
<repositories>
104-
<repository>
105-
<id>spring-libs-snapshot</id>
106-
<url>https://repo.spring.io/libs-snapshot</url>
107-
</repository>
108-
</repositories>
109-
110103
<dependencyManagement>
111104
<dependencies>
112105

@@ -377,4 +370,21 @@
377370
</profile>
378371
</profiles>
379372

373+
<repositories>
374+
<repository>
375+
<id>spring-snapshot</id>
376+
<url>https://repo.spring.io/snapshot</url>
377+
<snapshots>
378+
<enabled>true</enabled>
379+
</snapshots>
380+
<releases>
381+
<enabled>false</enabled>
382+
</releases>
383+
</repository>
384+
<repository>
385+
<id>spring-milestone</id>
386+
<url>https://repo.spring.io/milestone</url>
387+
</repository>
388+
</repositories>
389+
380390
</project>

spring-data-cassandra-distribution/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,4 @@
3737
</plugins>
3838
</build>
3939

40-
<pluginRepositories>
41-
<pluginRepository>
42-
<id>spring-release</id>
43-
<name>Spring Release</name>
44-
<url>https://repo.spring.io/release</url> <!-- For Releases -->
45-
</pluginRepository>
46-
</pluginRepositories>
4740
</project>

src/main/asciidoc/reference/cassandra.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If using a milestone release instead of a GA release, you also need to add the l
6464
<repository>
6565
<id>spring-milestone</id>
6666
<name>Spring Maven MILESTONE Repository</name>
67-
<url>https://repo.spring.io/libs-milestone</url>
67+
<url>https://repo.spring.io/milestone</url>
6868
</repository>
6969
</repositories>
7070
----

0 commit comments

Comments
 (0)