Skip to content

Commit e586b19

Browse files
committed
After release cleanups.
See #4690
1 parent 5a378ba commit e586b19

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

1515
options {

pom.xml

+16-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>org.springframework.data.build</groupId>
1717
<artifactId>spring-data-parent</artifactId>
18-
<version>3.3.0</version>
18+
<version>3.3.1-SNAPSHOT</version>
1919
</parent>
2020

2121
<modules>
@@ -26,7 +26,7 @@
2626
<properties>
2727
<project.type>multi</project.type>
2828
<dist.id>spring-data-mongodb</dist.id>
29-
<springdata.commons>3.3.0</springdata.commons>
29+
<springdata.commons>3.3.1-SNAPSHOT</springdata.commons>
3030
<mongo>5.0.1</mongo>
3131
<mongo.reactivestreams>${mongo}</mongo.reactivestreams>
3232
<jmh.version>1.19</jmh.version>
@@ -151,8 +151,20 @@
151151
</dependencies>
152152

153153
<repositories>
154-
155-
154+
<repository>
155+
<id>spring-snapshot</id>
156+
<url>https://repo.spring.io/snapshot</url>
157+
<snapshots>
158+
<enabled>true</enabled>
159+
</snapshots>
160+
<releases>
161+
<enabled>false</enabled>
162+
</releases>
163+
</repository>
164+
<repository>
165+
<id>spring-milestone</id>
166+
<url>https://repo.spring.io/milestone</url>
167+
</repository>
156168
</repositories>
157169

158170
</project>

0 commit comments

Comments
 (0)