Skip to content

Commit e02ea86

Browse files
committed
After release cleanups.
See #2524
1 parent 605edc0 commit e02ea86

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pipeline {
99

1010
triggers {
1111
pollSCM 'H/10 * * * *'
12-
upstream(upstreamProjects: "spring-hateoas/main,spring-data-commons/main", threshold: hudson.model.Result.SUCCESS)
12+
upstream(upstreamProjects: "spring-hateoas/main,spring-data-commons/4.0.x", threshold: hudson.model.Result.SUCCESS)
1313
}
1414

1515
options {

pom.xml

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.data.build</groupId>
1515
<artifactId>spring-data-parent</artifactId>
16-
<version>4.0.0</version>
16+
<version>4.0.1-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>4.0.0</springdata.commons>
32-
<springdata.jpa>4.0.0</springdata.jpa>
33-
<springdata.mongodb>5.0.0</springdata.mongodb>
34-
<springdata.keyvalue>4.0.0</springdata.keyvalue>
31+
<springdata.commons>4.0.1-SNAPSHOT</springdata.commons>
32+
<springdata.jpa>4.0.1-SNAPSHOT</springdata.jpa>
33+
<springdata.mongodb>5.0.1-SNAPSHOT</springdata.mongodb>
34+
<springdata.keyvalue>4.0.1-SNAPSHOT</springdata.keyvalue>
3535

3636
<hibernate.version>7.0.0.Beta1</hibernate.version>
3737
</properties>
@@ -142,8 +142,20 @@
142142
</dependencies>
143143

144144
<repositories>
145-
146-
145+
<repository>
146+
<id>spring-snapshot</id>
147+
<url>https://repo.spring.io/snapshot</url>
148+
<snapshots>
149+
<enabled>true</enabled>
150+
</snapshots>
151+
<releases>
152+
<enabled>false</enabled>
153+
</releases>
154+
</repository>
155+
<repository>
156+
<id>spring-milestone</id>
157+
<url>https://repo.spring.io/milestone</url>
158+
</repository>
147159
</repositories>
148160

149161
</project>

0 commit comments

Comments
 (0)