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 {
triggers { triggers {
pollSCM 'H/10 * * * *' 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 { options {

18
pom.xml

@ -25,7 +25,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>
</parent> </parent>
<properties> <properties>
@ -380,8 +380,20 @@
</profiles> </profiles>
<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>

Loading…
Cancel
Save