Skip to content

Commit

Permalink
After release cleanups.
Browse files Browse the repository at this point in the history
See #2382
  • Loading branch information
mp911de committed May 17, 2024
1 parent 5c8a225 commit 8ef33da
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pipeline {

triggers {
pollSCM 'H/10 * * * *'
upstream(upstreamProjects: "spring-hateoas/main,spring-data-commons/main", threshold: hudson.model.Result.SUCCESS)
upstream(upstreamProjects: "spring-hateoas/2.3.x,spring-data-commons/3.3.x", threshold: hudson.model.Result.SUCCESS)
}

options {
Expand Down
26 changes: 19 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>3.3.0</version>
<version>3.3.1-SNAPSHOT</version>
<relativePath/>
</parent>

Expand All @@ -28,10 +28,10 @@
<project.type>multi</project.type>
<dist.id>spring-data-rest</dist.id>

<springdata.commons>3.3.0</springdata.commons>
<springdata.jpa>3.3.0</springdata.jpa>
<springdata.mongodb>4.3.0</springdata.mongodb>
<springdata.keyvalue>3.3.0</springdata.keyvalue>
<springdata.commons>3.3.1-SNAPSHOT</springdata.commons>
<springdata.jpa>3.3.1-SNAPSHOT</springdata.jpa>
<springdata.mongodb>4.3.1-SNAPSHOT</springdata.mongodb>
<springdata.keyvalue>3.3.1-SNAPSHOT</springdata.keyvalue>

<hibernate.version>6.5.0.CR1</hibernate.version>
</properties>
Expand Down Expand Up @@ -136,8 +136,20 @@
</dependencies>

<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>

</project>

0 comments on commit 8ef33da

Please sign in to comment.