Skip to content

Commit 97e359a

Browse files
committed
Use snapshot and milestone repositories instead of libs-snapshot and libs-milestone.
Closes #1387
1 parent c12adea commit 97e359a

File tree

4 files changed

+23
-13
lines changed

4 files changed

+23
-13
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
@@ -101,13 +101,6 @@
101101
<springdata.commons>2.7.13-SNAPSHOT</springdata.commons>
102102
</properties>
103103

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

@@ -400,4 +393,21 @@
400393
</profile>
401394
</profiles>
402395

396+
<repositories>
397+
<repository>
398+
<id>spring-snapshot</id>
399+
<url>https://repo.spring.io/snapshot</url>
400+
<snapshots>
401+
<enabled>true</enabled>
402+
</snapshots>
403+
<releases>
404+
<enabled>false</enabled>
405+
</releases>
406+
</repository>
407+
<repository>
408+
<id>spring-milestone</id>
409+
<url>https://repo.spring.io/milestone</url>
410+
</repository>
411+
</repositories>
412+
403413
</project>

src/main/asciidoc/preface.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,6 @@ Finally, you can follow the Spring https://spring.io/blog[blog] or the project
9696

9797
* Version Control: https://github.com/spring-projects/spring-data-cassandra
9898
* Bugtracker: https://github.com/spring-projects/spring-data-cassandra/issues
99-
* Release repository: https://repo.spring.io/libs-release
100-
* Milestone repository: https://repo.spring.io/libs-milestone
101-
* Snapshot repository: https://repo.spring.io/libs-snapshot
99+
* Release repository: https://repo1.maven.org/maven2/
100+
* Milestone repository: https://repo.spring.io/milestone/
101+
* Snapshot repository: https://repo.spring.io/snapshot/

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)