Skip to content

Commit 0d256da

Browse files
committed
Fixup version numbers following release
1 parent ca3a864 commit 0d256da

File tree

10 files changed

+19
-22
lines changed

10 files changed

+19
-22
lines changed

spring-boot-dependencies/pom.xml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<groupId>org.springframework.boot</groupId>
54
<artifactId>spring-boot-dependencies</artifactId>
@@ -3049,7 +3048,7 @@
30493048
<plugin>
30503049
<groupId>org.springframework.boot</groupId>
30513050
<artifactId>spring-boot-maven-plugin</artifactId>
3052-
<version>1.5.20.BUILD-SNAPSHOT</version>
3051+
<version>1.5.21.BUILD-SNAPSHOT</version>
30533052
</plugin>
30543053
<plugin>
30553054
<groupId>org.apache.maven.plugins</groupId>
@@ -3270,4 +3269,4 @@
32703269
<id>integration-test</id>
32713270
</profile>
32723271
</profiles>
3273-
</project>
3272+
</project>

spring-boot-samples/spring-boot-sample-actuator/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '1.5.20.BUILD-SNAPSHOT'
3+
springBootVersion = '1.5.21.BUILD-SNAPSHOT'
44
}
55
repositories {
66
// NOTE: You should declare only repositories that you need here

spring-boot-samples/spring-boot-sample-ant/build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
actual jars). Run with '$ java -jar target/*.jar'.
1212
</description>
1313

14-
<property name="spring-boot.version" value="1.5.20.BUILD-SNAPSHOT" />
14+
<property name="spring-boot.version" value="1.5.21.BUILD-SNAPSHOT" />
1515
<property name="lib.dir" location="${basedir}/target/lib" />
1616
<property name="start-class" value="sample.ant.SampleAntApplication" />
1717

spring-boot-samples/spring-boot-sample-ant/pom.xml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<!-- This POM is just to trigger the Ant/Ivy sample from Maven and to test -->
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
@@ -62,8 +61,8 @@
6261
<phase>package</phase>
6362
<configuration>
6463
<target>
65-
<property name="build.compiler" value="extJavac" />
66-
<ant dir="${basedir}" />
64+
<property name="build.compiler" value="extJavac"/>
65+
<ant dir="${basedir}"/>
6766
</target>
6867
</configuration>
6968
<goals>
@@ -85,7 +84,7 @@
8584
<dependency>
8685
<groupId>org.springframework.boot</groupId>
8786
<artifactId>spring-boot-antlib</artifactId>
88-
<version>1.5.20.BUILD-SNAPSHOT</version>
87+
<version>1.5.21.BUILD-SNAPSHOT</version>
8988
</dependency>
9089
</dependencies>
9190
</plugin>
@@ -103,4 +102,4 @@
103102
</plugin>
104103
</plugins>
105104
</build>
106-
</project>
105+
</project>

spring-boot-samples/spring-boot-sample-logback/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '1.5.20.BUILD-SNAPSHOT'
3+
springBootVersion = '1.5.21.BUILD-SNAPSHOT'
44
}
55
repositories {
66
// NOTE: You should declare only repositories that you need here

spring-boot-samples/spring-boot-sample-profile/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '1.5.20.BUILD-SNAPSHOT'
3+
springBootVersion = '1.5.21.BUILD-SNAPSHOT'
44
}
55
repositories {
66
// NOTE: You should declare only repositories that you need here

spring-boot-samples/spring-boot-sample-simple/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '1.5.20.BUILD-SNAPSHOT'
3+
springBootVersion = '1.5.21.BUILD-SNAPSHOT'
44
}
55
repositories {
66
// NOTE: You should declare only repositories that you need here

spring-boot-samples/spring-boot-sample-web-static/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '1.5.20.BUILD-SNAPSHOT'
3+
springBootVersion = '1.5.21.BUILD-SNAPSHOT'
44
}
55
repositories {
66
// NOTE: You should declare only repositories that you need here

spring-boot-samples/spring-boot-sample-web-ui/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
springBootVersion = '1.5.20.BUILD-SNAPSHOT'
3+
springBootVersion = '1.5.21.BUILD-SNAPSHOT'
44
springLoadedVersion = '1.2.4.RELEASE'
55
}
66
repositories {

spring-boot-starters/spring-boot-starter-parent/pom.xml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
32
<modelVersion>4.0.0</modelVersion>
43
<parent>
54
<groupId>org.springframework.boot</groupId>
@@ -171,7 +170,7 @@
171170
<dependency>
172171
<groupId>org.springframework.boot</groupId>
173172
<artifactId>spring-boot-maven-plugin</artifactId>
174-
<version>1.5.20.BUILD-SNAPSHOT</version>
173+
<version>1.5.21.BUILD-SNAPSHOT</version>
175174
</dependency>
176175
</dependencies>
177176
<configuration>
@@ -205,7 +204,7 @@
205204
<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
206205
<resource>META-INF/spring.schemas</resource>
207206
</transformer>
208-
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
207+
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
209208
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
210209
<mainClass>${start-class}</mainClass>
211210
</transformer>
@@ -217,4 +216,4 @@
217216
</plugins>
218217
</pluginManagement>
219218
</build>
220-
</project>
219+
</project>

0 commit comments

Comments
 (0)