Skip to content

Commit bf49604

Browse files
committed
After release cleanups.
See #1614
1 parent c905710 commit bf49604

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
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/4.0.x", threshold: hudson.model.Result.SUCCESS)
1313
}
1414

1515
options {

pom.xml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.data.build</groupId>
88
<artifactId>spring-data-parent</artifactId>
9-
<version>4.0.0</version>
9+
<version>4.0.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<groupId>org.springframework.data</groupId>
@@ -107,7 +107,7 @@
107107
<cassandra-driver.version>4.19.0</cassandra-driver.version>
108108
<dist.id>spring-data-cassandra</dist.id>
109109
<multithreadedtc.version>1.01</multithreadedtc.version>
110-
<springdata.commons>4.0.0</springdata.commons>
110+
<springdata.commons>4.0.1-SNAPSHOT</springdata.commons>
111111
</properties>
112112

113113
<dependencyManagement>
@@ -279,8 +279,20 @@
279279
</profiles>
280280

281281
<repositories>
282-
283-
282+
<repository>
283+
<id>spring-snapshot</id>
284+
<url>https://repo.spring.io/snapshot</url>
285+
<snapshots>
286+
<enabled>true</enabled>
287+
</snapshots>
288+
<releases>
289+
<enabled>false</enabled>
290+
</releases>
291+
</repository>
292+
<repository>
293+
<id>spring-milestone</id>
294+
<url>https://repo.spring.io/milestone</url>
295+
</repository>
284296
</repositories>
285297

286298
</project>

0 commit comments

Comments
 (0)