Skip to content

Commit 014776d

Browse files
committed
After release cleanups.
See #4051
1 parent 94055c7 commit 014776d

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
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-data-commons/main", threshold: hudson.model.Result.SUCCESS)
12+
upstream(upstreamProjects: "spring-data-commons/4.0.x", threshold: hudson.model.Result.SUCCESS)
1313
}
1414

1515
options {

pom.xml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>org.springframework.data.build</groupId>
2525
<artifactId>spring-data-parent</artifactId>
26-
<version>4.0.0</version>
26+
<version>4.0.1-SNAPSHOT</version>
2727
</parent>
2828

2929
<properties>
@@ -39,7 +39,7 @@
3939
<mysql-connector-java>9.5.0</mysql-connector-java>
4040
<postgresql>42.7.8</postgresql>
4141
<oracle>23.26.0.0.0</oracle>
42-
<springdata.commons>4.0.0</springdata.commons>
42+
<springdata.commons>4.0.1-SNAPSHOT</springdata.commons>
4343
<vavr>0.10.3</vavr>
4444

4545
<hibernate.groupId>org.hibernate</hibernate.groupId>
@@ -193,8 +193,20 @@
193193
</build>
194194

195195
<repositories>
196-
197-
196+
<repository>
197+
<id>spring-snapshot</id>
198+
<url>https://repo.spring.io/snapshot</url>
199+
<snapshots>
200+
<enabled>true</enabled>
201+
</snapshots>
202+
<releases>
203+
<enabled>false</enabled>
204+
</releases>
205+
</repository>
206+
<repository>
207+
<id>spring-milestone</id>
208+
<url>https://repo.spring.io/milestone</url>
209+
</repository>
198210
</repositories>
199211

200212
<pluginRepositories>

0 commit comments

Comments
 (0)