Skip to content

Commit 7d2bdf5

Browse files
committed
After release cleanups.
See #3646
1 parent 06076db commit 7d2bdf5

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

Jenkinsfile

+1-1
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.4.x", threshold: hudson.model.Result.SUCCESS)
1313
}
1414

1515
options {

pom.xml

+16-4
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.4.0</version>
26+
<version>3.4.1-SNAPSHOT</version>
2727
</parent>
2828

2929
<properties>
@@ -41,7 +41,7 @@
4141
<jsqlparser>5.0</jsqlparser>
4242
<mysql-connector-java>9.1.0</mysql-connector-java>
4343
<postgresql>42.7.4</postgresql>
44-
<springdata.commons>3.4.0</springdata.commons>
44+
<springdata.commons>3.4.1-SNAPSHOT</springdata.commons>
4545
<vavr>0.10.3</vavr>
4646

4747
<hibernate.groupId>org.hibernate</hibernate.groupId>
@@ -289,8 +289,20 @@
289289
</build>
290290

291291
<repositories>
292-
293-
292+
<repository>
293+
<id>spring-snapshot</id>
294+
<url>https://repo.spring.io/snapshot</url>
295+
<snapshots>
296+
<enabled>true</enabled>
297+
</snapshots>
298+
<releases>
299+
<enabled>false</enabled>
300+
</releases>
301+
</repository>
302+
<repository>
303+
<id>spring-milestone</id>
304+
<url>https://repo.spring.io/milestone</url>
305+
</repository>
294306
</repositories>
295307

296308
<pluginRepositories>

0 commit comments

Comments
 (0)