Browse Source

After release cleanups.

See #3183
3.4.x
Mark Paluch 1 year ago
parent
commit
02ffabc85d
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973
  1. 2
      Jenkinsfile
  2. 18
      pom.xml

2
Jenkinsfile vendored

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

18
pom.xml

@ -25,7 +25,7 @@ @@ -25,7 +25,7 @@
<parent>
<groupId>org.springframework.data.build</groupId>
<artifactId>spring-data-parent</artifactId>
<version>3.4.0</version>
<version>3.4.1-SNAPSHOT</version>
</parent>
<properties>
@ -380,8 +380,20 @@ @@ -380,8 +380,20 @@
</profiles>
<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>

Loading…
Cancel
Save