Skip to content

Commit 02ffabc

Browse files
committed
After release cleanups.
See #3183
1 parent 65b5b50 commit 02ffabc

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

Diff for: 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-build/main", threshold: hudson.model.Result.SUCCESS)
12+
upstream(upstreamProjects: "spring-data-build/3.4.x", threshold: hudson.model.Result.SUCCESS)
1313
}
1414

1515
options {

Diff for: pom.xml

+15-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<parent>
2626
<groupId>org.springframework.data.build</groupId>
2727
<artifactId>spring-data-parent</artifactId>
28-
<version>3.4.0</version>
28+
<version>3.4.1-SNAPSHOT</version>
2929
</parent>
3030

3131
<properties>
@@ -380,8 +380,20 @@
380380
</profiles>
381381

382382
<repositories>
383-
384-
383+
<repository>
384+
<id>spring-snapshot</id>
385+
<url>https://repo.spring.io/snapshot</url>
386+
<snapshots>
387+
<enabled>true</enabled>
388+
</snapshots>
389+
<releases>
390+
<enabled>false</enabled>
391+
</releases>
392+
</repository>
393+
<repository>
394+
<id>spring-milestone</id>
395+
<url>https://repo.spring.io/milestone</url>
396+
</repository>
385397
</repositories>
386398

387399
</project>

0 commit comments

Comments
 (0)