Skip to content

Commit ce95089

Browse files
committed
After release cleanups.
See #2473
1 parent e1eb8eb commit ce95089

File tree

11 files changed

+34
-22
lines changed

11 files changed

+34
-22
lines changed

pom.xml

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-rest-parent</artifactId>
8-
<version>4.6.0-SNAPSHOT</version>
8+
<version>5.0.0-SNAPSHOT</version>
99
<packaging>pom</packaging>
1010

1111
<name>Spring Data REST</name>
1212

1313
<parent>
1414
<groupId>org.springframework.data.build</groupId>
1515
<artifactId>spring-data-parent</artifactId>
16-
<version>3.5.0</version>
16+
<version>4.0.0-SNAPSHOT</version>
1717
<relativePath/>
1818
</parent>
1919

@@ -28,10 +28,10 @@
2828
<project.type>multi</project.type>
2929
<dist.id>spring-data-rest</dist.id>
3030

31-
<springdata.commons>3.5.0</springdata.commons>
32-
<springdata.jpa>3.5.0</springdata.jpa>
33-
<springdata.mongodb>4.5.0</springdata.mongodb>
34-
<springdata.keyvalue>3.5.0</springdata.keyvalue>
31+
<springdata.commons>4.0.0-SNAPSHOT</springdata.commons>
32+
<springdata.jpa>4.0.0-SNAPSHOT</springdata.jpa>
33+
<springdata.mongodb>5.0.0-SNAPSHOT</springdata.mongodb>
34+
<springdata.keyvalue>4.0.0-SNAPSHOT</springdata.keyvalue>
3535

3636
<hibernate.version>6.5.2.Final</hibernate.version>
3737
</properties>
@@ -136,8 +136,20 @@
136136
</dependencies>
137137

138138
<repositories>
139-
140-
139+
<repository>
140+
<id>spring-snapshot</id>
141+
<url>https://repo.spring.io/snapshot</url>
142+
<snapshots>
143+
<enabled>true</enabled>
144+
</snapshots>
145+
<releases>
146+
<enabled>false</enabled>
147+
</releases>
148+
</repository>
149+
<repository>
150+
<id>spring-milestone</id>
151+
<url>https://repo.spring.io/milestone</url>
152+
</repository>
141153
</repositories>
142154

143155
</project>

spring-data-rest-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<groupId>org.springframework.data</groupId>
1313
<artifactId>spring-data-rest-parent</artifactId>
14-
<version>4.6.0-SNAPSHOT</version>
14+
<version>5.0.0-SNAPSHOT</version>
1515
<relativePath>../pom.xml</relativePath>
1616
</parent>
1717

spring-data-rest-distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.data</groupId>
1515
<artifactId>spring-data-rest-parent</artifactId>
16-
<version>4.6.0-SNAPSHOT</version>
16+
<version>5.0.0-SNAPSHOT</version>
1717
<relativePath>../pom.xml</relativePath>
1818
</parent>
1919

spring-data-rest-hal-explorer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-rest-parent</artifactId>
8-
<version>4.6.0-SNAPSHOT</version>
8+
<version>5.0.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>spring-data-rest-hal-explorer</artifactId>

spring-data-rest-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-rest-parent</artifactId>
8-
<version>4.6.0-SNAPSHOT</version>
8+
<version>5.0.0-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

spring-data-rest-tests/spring-data-rest-tests-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-rest-tests</artifactId>
8-
<version>4.6.0-SNAPSHOT</version>
8+
<version>5.0.0-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>org.springframework.data</groupId>
2323
<artifactId>spring-data-rest-webmvc</artifactId>
24-
<version>4.6.0-SNAPSHOT</version>
24+
<version>5.0.0-SNAPSHOT</version>
2525
</dependency>
2626

2727
</dependencies>

spring-data-rest-tests/spring-data-rest-tests-jpa/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-rest-tests</artifactId>
8-
<version>4.6.0-SNAPSHOT</version>
8+
<version>5.0.0-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>org.springframework.data</groupId>
2323
<artifactId>spring-data-rest-tests-core</artifactId>
24-
<version>4.6.0-SNAPSHOT</version>
24+
<version>5.0.0-SNAPSHOT</version>
2525
<type>test-jar</type>
2626
</dependency>
2727

spring-data-rest-tests/spring-data-rest-tests-mongodb/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-rest-tests</artifactId>
8-
<version>4.6.0-SNAPSHOT</version>
8+
<version>5.0.0-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -33,7 +33,7 @@
3333
<dependency>
3434
<groupId>org.springframework.data</groupId>
3535
<artifactId>spring-data-rest-tests-core</artifactId>
36-
<version>4.6.0-SNAPSHOT</version>
36+
<version>5.0.0-SNAPSHOT</version>
3737
<type>test-jar</type>
3838
</dependency>
3939

spring-data-rest-tests/spring-data-rest-tests-security/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-rest-tests</artifactId>
8-
<version>4.6.0-SNAPSHOT</version>
8+
<version>5.0.0-SNAPSHOT</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>org.springframework.data</groupId>
2424
<artifactId>spring-data-rest-tests-core</artifactId>
25-
<version>4.6.0-SNAPSHOT</version>
25+
<version>5.0.0-SNAPSHOT</version>
2626
<type>test-jar</type>
2727
</dependency>
2828

spring-data-rest-tests/spring-data-rest-tests-shop/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.data</groupId>
66
<artifactId>spring-data-rest-tests</artifactId>
7-
<version>4.6.0-SNAPSHOT</version>
7+
<version>5.0.0-SNAPSHOT</version>
88
</parent>
99
<name>Spring Data REST Tests - Shop</name>
1010
<artifactId>spring-data-rest-tests-shop</artifactId>

spring-data-rest-webmvc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.data</groupId>
1414
<artifactId>spring-data-rest-parent</artifactId>
15-
<version>4.6.0-SNAPSHOT</version>
15+
<version>5.0.0-SNAPSHOT</version>
1616
<relativePath>../pom.xml</relativePath>
1717
</parent>
1818

0 commit comments

Comments
 (0)