After release cleanups.

See #2424
This commit is contained in:
Mark Paluch
2024-11-15 14:13:26 +01:00
parent 5c7001422c
commit 37364c3e3e
2 changed files with 20 additions and 8 deletions

2
Jenkinsfile vendored
View File

@@ -9,7 +9,7 @@ pipeline {
triggers { triggers {
pollSCM 'H/10 * * * *' pollSCM 'H/10 * * * *'
upstream(upstreamProjects: "spring-hateoas/main,spring-data-commons/main", threshold: hudson.model.Result.SUCCESS) upstream(upstreamProjects: "spring-hateoas/main,spring-data-commons/3.4.x", threshold: hudson.model.Result.SUCCESS)
} }
options { options {

26
pom.xml
View File

@@ -13,7 +13,7 @@
<parent> <parent>
<groupId>org.springframework.data.build</groupId> <groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId> <artifactId>spring-data-parent</artifactId>
<version>3.4.0</version> <version>3.4.1-SNAPSHOT</version>
<relativePath/> <relativePath/>
</parent> </parent>
@@ -28,10 +28,10 @@
<project.type>multi</project.type> <project.type>multi</project.type>
<dist.id>spring-data-rest</dist.id> <dist.id>spring-data-rest</dist.id>
<springdata.commons>3.4.0</springdata.commons> <springdata.commons>3.4.1-SNAPSHOT</springdata.commons>
<springdata.jpa>3.4.0</springdata.jpa> <springdata.jpa>3.4.1-SNAPSHOT</springdata.jpa>
<springdata.mongodb>4.4.0</springdata.mongodb> <springdata.mongodb>4.4.1-SNAPSHOT</springdata.mongodb>
<springdata.keyvalue>3.4.0</springdata.keyvalue> <springdata.keyvalue>3.4.1-SNAPSHOT</springdata.keyvalue>
<hibernate.version>6.5.2.Final</hibernate.version> <hibernate.version>6.5.2.Final</hibernate.version>
</properties> </properties>
@@ -136,8 +136,20 @@
</dependencies> </dependencies>
<repositories> <repositories>
<repository>
<id>spring-snapshot</id>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>spring-milestone</id>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories> </repositories>
</project> </project>