Skip to content

Commit 99111e2

Browse files
committed
After release cleanups.
See #599
1 parent 112de1e commit 99111e2

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
@@ -12,12 +12,12 @@
1212
<parent>
1313
<groupId>org.springframework.data.build</groupId>
1414
<artifactId>spring-data-parent</artifactId>
15-
<version>3.4.0</version>
15+
<version>3.4.1-SNAPSHOT</version>
1616
<relativePath/>
1717
</parent>
1818

1919
<properties>
20-
<springdata.commons>3.4.0</springdata.commons>
20+
<springdata.commons>3.4.1-SNAPSHOT</springdata.commons>
2121
<java-module-name>spring.data.keyvalue</java-module-name>
2222
</properties>
2323

@@ -108,8 +108,20 @@
108108
</profiles>
109109

110110
<repositories>
111-
112-
111+
<repository>
112+
<id>spring-snapshot</id>
113+
<url>https://repo.spring.io/snapshot</url>
114+
<snapshots>
115+
<enabled>true</enabled>
116+
</snapshots>
117+
<releases>
118+
<enabled>false</enabled>
119+
</releases>
120+
</repository>
121+
<repository>
122+
<id>spring-milestone</id>
123+
<url>https://repo.spring.io/milestone</url>
124+
</repository>
113125
</repositories>
114126

115127
</project>

0 commit comments

Comments
 (0)