Skip to content

Commit a2c842b

Browse files
committed
DATAMONGO-2534 - After release cleanups.
1 parent 0cd0be9 commit a2c842b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pipeline {
33

44
triggers {
55
pollSCM 'H/10 * * * *'
6-
upstream(upstreamProjects: "spring-data-commons/master", threshold: hudson.model.Result.SUCCESS)
6+
upstream(upstreamProjects: "spring-data-commons/2.3.x", threshold: hudson.model.Result.SUCCESS)
77
}
88

99
options {
@@ -68,7 +68,7 @@ pipeline {
6868
stage("test: baseline (jdk8)") {
6969
when {
7070
anyOf {
71-
branch 'master'
71+
branch '3.0.x'
7272
not { triggeredBy 'UpstreamCause' }
7373
}
7474
}
@@ -94,7 +94,7 @@ pipeline {
9494
stage("Test other configurations") {
9595
when {
9696
anyOf {
97-
branch 'master'
97+
branch '3.0.x'
9898
not { triggeredBy 'UpstreamCause' }
9999
}
100100
}
@@ -164,7 +164,7 @@ pipeline {
164164
stage('Release to artifactory') {
165165
when {
166166
anyOf {
167-
branch 'master'
167+
branch '3.0.x'
168168
not { triggeredBy 'UpstreamCause' }
169169
}
170170
}
@@ -196,7 +196,7 @@ pipeline {
196196

197197
stage('Publish documentation') {
198198
when {
199-
branch 'master'
199+
branch '3.0.x'
200200
}
201201
agent {
202202
docker {

pom.xml

Lines changed: 4 additions & 4 deletions
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>2.3.0.RELEASE</version>
18+
<version>2.3.1.BUILD-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>2.3.0.RELEASE</springdata.commons>
29+
<springdata.commons>2.3.1.BUILD-SNAPSHOT</springdata.commons>
3030
<mongo>4.0.3</mongo>
3131
<mongo.reactivestreams>${mongo}</mongo.reactivestreams>
3232
<jmh.version>1.19</jmh.version>
@@ -134,8 +134,8 @@
134134

135135
<repositories>
136136
<repository>
137-
<id>spring-libs-release</id>
138-
<url>https://repo.spring.io/libs-release</url>
137+
<id>spring-libs-snapshot</id>
138+
<url>https://repo.spring.io/libs-snapshot</url>
139139
</repository>
140140
<repository>
141141
<id>sonatype-libs-snapshot</id>

0 commit comments

Comments
 (0)