Skip to content

Commit fdfa61e

Browse files
committed
Release version 0.5.0.M4
1 parent 8467a66 commit fdfa61e

File tree

44 files changed

+112
-162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+112
-162
lines changed

pom.xml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>org.springframework.boot</groupId>
65
<artifactId>spring-boot-build</artifactId>
7-
<version>0.5.0.BUILD-SNAPSHOT</version>
6+
<version>0.5.0.M4</version>
87
<packaging>pom</packaging>
98
<prerequisites>
109
<maven>3.0.0</maven>
@@ -88,18 +87,14 @@
8887
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
8988
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
9089
<var name="version-type" value="${project.version}" />
91-
<propertyregex property="version-type" override="true"
92-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
93-
<propertyregex property="version-type" override="true"
94-
input="${version-type}" regexp="(M)\d+" replace="\1ILESTONE" />
95-
<propertyregex property="version-type" override="true"
96-
input="${version-type}" regexp="BUILD-(.*)" replace="\1" />
90+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
91+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="\1ILESTONE" />
92+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="\1" />
9793
<stringutil string="${version-type}" property="profile">
9894
<lowercase />
9995
</stringutil>
10096
<echo message="Writing settings for ${profile} profile" />
101-
<copy file=".settings-template.xml" tofile="settings.xml"
102-
overwrite="true">
97+
<copy file=".settings-template.xml" tofile="settings.xml" overwrite="true">
10398
<filterset>
10499
<filter token="profile" value="${profile}" />
105100
</filterset>
@@ -116,8 +111,7 @@
116111
<inherited>false</inherited>
117112
<configuration>
118113
<target>
119-
<property name="sourceFile"
120-
value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
114+
<property name="sourceFile" value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
121115
<xslt in="${sourceFile}" out="${sourceFile}.new" force="true">
122116
<style>
123117
<string><![CDATA[

spring-boot-actuator/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-parent</artifactId>
8-
<version>0.5.0.BUILD-SNAPSHOT</version>
7+
<version>0.5.0.M4</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-actuator</artifactId>

spring-boot-autoconfigure/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-parent</artifactId>
8-
<version>0.5.0.BUILD-SNAPSHOT</version>
7+
<version>0.5.0.M4</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-autoconfigure</artifactId>

spring-boot-cli/pom.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-parent</artifactId>
8-
<version>0.5.0.BUILD-SNAPSHOT</version>
7+
<version>0.5.0.M4</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-cli</artifactId>
@@ -108,10 +107,8 @@
108107
</goals>
109108
<configuration>
110109
<transformers>
111-
<transformer
112-
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
113-
<transformer
114-
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
110+
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
111+
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
115112
<mainClass>${start-class}</mainClass>
116113
</transformer>
117114
</transformers>

spring-boot-dependencies/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>org.springframework.boot</groupId>
65
<artifactId>spring-boot-dependencies</artifactId>
7-
<version>0.5.0.BUILD-SNAPSHOT</version>
6+
<version>0.5.0.M4</version>
87
<packaging>pom</packaging>
98
<properties>
109
<aspectj.version>1.7.3</aspectj.version>

spring-boot-full-build/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<groupId>org.springframework.boot</groupId>
65
<artifactId>spring-boot-full-build</artifactId>
7-
<version>0.5.0.BUILD-SNAPSHOT</version>
6+
<version>0.5.0.M4</version>
87
<packaging>pom</packaging>
98
<modules>
109
<module>../</module>

spring-boot-integration-tests/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-parent</artifactId>
8-
<version>0.5.0.BUILD-SNAPSHOT</version>
7+
<version>0.5.0.M4</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-integration-tests</artifactId>

spring-boot-javadoc/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-parent</artifactId>
8-
<version>0.5.0.BUILD-SNAPSHOT</version>
7+
<version>0.5.0.M4</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-javadoc</artifactId>

spring-boot-parent/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-dependencies</artifactId>
8-
<version>0.5.0.BUILD-SNAPSHOT</version>
7+
<version>0.5.0.M4</version>
98
<relativePath>../spring-boot-dependencies</relativePath>
109
</parent>
1110
<artifactId>spring-boot-parent</artifactId>

spring-boot-samples/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?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"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54
<parent>
65
<groupId>org.springframework.boot</groupId>
76
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>0.5.0.BUILD-SNAPSHOT</version>
7+
<version>0.5.0.M4</version>
98
<relativePath>../spring-boot-starters/spring-boot-starter-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-samples</artifactId>

0 commit comments

Comments
 (0)