Skip to content

Commit b89d580

Browse files
committed
Release version 0.5.0.M7
1 parent d9e326a commit b89d580

File tree

59 files changed

+144
-224
lines changed

Some content is hidden

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

59 files changed

+144
-224
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.M7</version>
87
<packaging>pom</packaging>
98
<prerequisites>
109
<maven>3.0.0</maven>
@@ -96,18 +95,14 @@
9695
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
9796
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
9897
<var name="version-type" value="${project.version}" />
99-
<propertyregex property="version-type" override="true"
100-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
101-
<propertyregex property="version-type" override="true"
102-
input="${version-type}" regexp="(M)\d+" replace="\1ILESTONE" />
103-
<propertyregex property="version-type" override="true"
104-
input="${version-type}" regexp="BUILD-(.*)" replace="\1" />
98+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
99+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="\1ILESTONE" />
100+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="\1" />
105101
<stringutil string="${version-type}" property="profile">
106102
<lowercase />
107103
</stringutil>
108104
<echo message="Writing settings for ${profile} profile" />
109-
<copy file=".settings-template.xml" tofile="settings.xml"
110-
overwrite="true">
105+
<copy file=".settings-template.xml" tofile="settings.xml" overwrite="true">
111106
<filterset>
112107
<filter token="profile" value="${profile}" />
113108
</filterset>
@@ -124,8 +119,7 @@
124119
<inherited>false</inherited>
125120
<configuration>
126121
<target>
127-
<property name="sourceFile"
128-
value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
122+
<property name="sourceFile" value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
129123
<xslt in="${sourceFile}" out="${sourceFile}.new" force="true">
130124
<style>
131125
<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.M7</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.M7</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-autoconfigure</artifactId>

spring-boot-cli/pom.xml

Lines changed: 12 additions & 24 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.M7</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-cli</artifactId>
@@ -31,7 +30,7 @@
3130
<dependency>
3231
<groupId>org.springframework.boot</groupId>
3332
<artifactId>spring-boot-starter-parent</artifactId>
34-
<version>0.5.0.BUILD-SNAPSHOT</version>
33+
<version>0.5.0.M7</version>
3534
<type>pom</type>
3635
<scope>import</scope>
3736
</dependency>
@@ -283,10 +282,7 @@
283282
<typedef resource="foundrylogic/vpp/typedef.properties" />
284283
<taskdef resource="foundrylogic/vpp/taskdef.properties" />
285284
<property name="dependencies" value="${project.parent}" />
286-
<vppcopy
287-
file="${basedir}/src/main/resources/META-INF/springcli.properties.vpp"
288-
tofile="${project.build.directory}/generated-resources/META-INF/springcli.properties"
289-
overwrite="true" />
285+
<vppcopy file="${basedir}/src/main/resources/META-INF/springcli.properties.vpp" tofile="${project.build.directory}/generated-resources/META-INF/springcli.properties" overwrite="true" />
290286
</target>
291287
</configuration>
292288
<goals>
@@ -306,28 +302,20 @@
306302
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
307303
<var name="version" value="${project.version}" />
308304
<var name="version-type" value="${project.version}" />
309-
<propertyregex property="version-type" override="true"
310-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
311-
<propertyregex property="version-type" override="true"
312-
input="${version-type}" regexp="(M)\d+" replace="\1ILESTONE" />
313-
<propertyregex property="version-type" override="true"
314-
input="${version-type}" regexp="BUILD-(.*)" replace="\1" />
305+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
306+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="\1ILESTONE" />
307+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="\1" />
315308
<stringutil string="${version-type}" property="repo">
316309
<lowercase />
317310
</stringutil>
318-
<checksum algorithm="sha-1"
319-
file="${project.build.directory}/spring-boot-cli-${version}-bin.tar.gz"
320-
property="checksum" />
321-
<echo
322-
message="Customizing homebrew for ${version} with checksum ${checksum} in ${repo} repo" />
323-
<copy file="${basedir}/src/main/homebrew/springboot.rb"
324-
tofile="${project.build.directory}/springboot.rb" overwrite="true">
311+
<checksum algorithm="sha-1" file="${project.build.directory}/spring-boot-cli-${version}-bin.tar.gz" property="checksum" />
312+
<echo message="Customizing homebrew for ${version} with checksum ${checksum} in ${repo} repo" />
313+
<copy file="${basedir}/src/main/homebrew/springboot.rb" tofile="${project.build.directory}/springboot.rb" overwrite="true">
325314
<filterchain>
326315
<expandproperties />
327316
</filterchain>
328317
</copy>
329-
<attachartifact file="${project.build.directory}/springboot.rb"
330-
classifier="homebrew" type="rb" />
318+
<attachartifact file="${project.build.directory}/springboot.rb" classifier="homebrew" type="rb" />
331319
</target>
332320
</configuration>
333321
</execution>
@@ -376,7 +364,7 @@
376364
</goals>
377365
</pluginExecutionFilter>
378366
<action>
379-
<ignore></ignore>
367+
<ignore />
380368
</action>
381369
</pluginExecution>
382370
</pluginExecutions>

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.M7</version>
87
<packaging>pom</packaging>
98
<properties>
109
<activemq.version>5.7.0</activemq.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.M7</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.M7</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.M7</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-javadoc</artifactId>

spring-boot-parent/pom.xml

Lines changed: 4 additions & 5 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.M7</version>
98
<relativePath>../spring-boot-dependencies</relativePath>
109
</parent>
1110
<artifactId>spring-boot-parent</artifactId>
@@ -262,7 +261,7 @@
262261
</goals>
263262
</pluginExecutionFilter>
264263
<action>
265-
<ignore></ignore>
264+
<ignore />
266265
</action>
267266
</pluginExecution>
268267
<pluginExecution>
@@ -281,7 +280,7 @@
281280
</goals>
282281
</pluginExecutionFilter>
283282
<action>
284-
<ignore></ignore>
283+
<ignore />
285284
</action>
286285
</pluginExecution>
287286
</pluginExecutions>

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.M7</version>
98
<relativePath>../spring-boot-starters/spring-boot-starter-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-samples</artifactId>

spring-boot-samples/spring-boot-sample-actuator-log4j/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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
<!-- Your own application should inherit from spring-boot-starter-parent -->
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-samples</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
8+
<version>0.5.0.M7</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator-log4j</artifactId>
1211
<packaging>jar</packaging>

spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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
<!-- Your own application should inherit from spring-boot-starter-parent -->
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-samples</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
8+
<version>0.5.0.M7</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator-noweb</artifactId>
1211
<packaging>jar</packaging>

spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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
<!-- Your own application should inherit from spring-boot-starter-parent -->
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-samples</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
8+
<version>0.5.0.M7</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator-ui</artifactId>
1211
<packaging>jar</packaging>

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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
<!-- Your own application should inherit from spring-boot-starter-parent -->
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-samples</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
8+
<version>0.5.0.M7</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator</artifactId>
1211
<packaging>jar</packaging>

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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
<!-- Your own application should inherit from spring-boot-starter-parent -->
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-samples</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
8+
<version>0.5.0.M7</version>
109
</parent>
1110
<artifactId>spring-boot-sample-amqp</artifactId>
1211
<packaging>jar</packaging>

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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
<!-- Your own application should inherit from spring-boot-starter-parent -->
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-samples</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
8+
<version>0.5.0.M7</version>
109
</parent>
1110
<artifactId>spring-boot-sample-aop</artifactId>
1211
<packaging>jar</packaging>

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
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
<!-- Your own application should inherit from spring-boot-starter-parent -->
76
<groupId>org.springframework.boot</groupId>
87
<artifactId>spring-boot-samples</artifactId>
9-
<version>0.5.0.BUILD-SNAPSHOT</version>
8+
<version>0.5.0.M7</version>
109
</parent>
1110
<artifactId>spring-boot-sample-batch</artifactId>
1211
<packaging>jar</packaging>

0 commit comments

Comments
 (0)