Skip to content

Commit 42463ae

Browse files
committed
After release cleanups.
See #3853
1 parent 33d532b commit 42463ae

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/3.5.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>3.5.0</version>
26+
<version>3.5.1-SNAPSHOT</version>
2727
</parent>
2828

2929
<properties>
@@ -41,7 +41,7 @@
4141
<jsqlparser>5.2</jsqlparser>
4242
<mysql-connector-java>9.2.0</mysql-connector-java>
4343
<postgresql>42.7.5</postgresql>
44-
<springdata.commons>3.5.0</springdata.commons>
44+
<springdata.commons>3.5.1-SNAPSHOT</springdata.commons>
4545
<vavr>0.10.3</vavr>
4646

4747
<hibernate.groupId>org.hibernate</hibernate.groupId>
@@ -173,8 +173,20 @@
173173
</build>
174174

175175
<repositories>
176-
177-
176+
<repository>
177+
<id>spring-snapshot</id>
178+
<url>https://repo.spring.io/snapshot</url>
179+
<snapshots>
180+
<enabled>true</enabled>
181+
</snapshots>
182+
<releases>
183+
<enabled>false</enabled>
184+
</releases>
185+
</repository>
186+
<repository>
187+
<id>spring-milestone</id>
188+
<url>https://repo.spring.io/milestone</url>
189+
</repository>
178190
</repositories>
179191

180192
<pluginRepositories>

0 commit comments

Comments
 (0)