Skip to content

Commit eaff167

Browse files
committed
Release version 1.0.0.RC3
1 parent dfe6de8 commit eaff167

File tree

64 files changed

+155
-237
lines changed

Some content is hidden

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

64 files changed

+155
-237
lines changed

pom.xml

Lines changed: 8 additions & 15 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>1.0.0.BUILD-SNAPSHOT</version>
6+
<version>1.0.0.RC3</version>
87
<packaging>pom</packaging>
98
<prerequisites>
109
<maven>3.0.0</maven>
@@ -96,20 +95,15 @@
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="MILESTONE" />
103-
<propertyregex property="version-type" override="true"
104-
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
105-
<propertyregex property="version-type" override="true"
106-
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
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="MILESTONE" />
100+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
101+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
107102
<stringutil string="${version-type}" property="profile">
108103
<lowercase />
109104
</stringutil>
110105
<echo message="Writing settings for ${profile} profile" />
111-
<copy file=".settings-template.xml" tofile="settings.xml"
112-
overwrite="true">
106+
<copy file=".settings-template.xml" tofile="settings.xml" overwrite="true">
113107
<filterset>
114108
<filter token="profile" value="${profile}" />
115109
</filterset>
@@ -126,8 +120,7 @@
126120
<inherited>false</inherited>
127121
<configuration>
128122
<target>
129-
<property name="sourceFile"
130-
value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
123+
<property name="sourceFile" value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
131124
<xslt in="${sourceFile}" out="${sourceFile}.new" force="true">
132125
<style>
133126
<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>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RC3</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-autoconfigure</artifactId>

spring-boot-cli/pom.xml

Lines changed: 11 additions & 21 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>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RC3</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-cli</artifactId>
@@ -249,30 +248,21 @@
249248
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
250249
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
251250
<var name="version-type" value="${project.version}" />
252-
<propertyregex property="version-type" override="true"
253-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
254-
<propertyregex property="version-type" override="true"
255-
input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
256-
<propertyregex property="version-type" override="true"
257-
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
258-
<propertyregex property="version-type" override="true"
259-
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
251+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
252+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
253+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
254+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
260255
<stringutil string="${version-type}" property="repo">
261256
<lowercase />
262257
</stringutil>
263-
<checksum algorithm="sha-1"
264-
file="${project.build.directory}/spring-boot-cli-${project.version}-bin.tar.gz"
265-
property="checksum" />
266-
<echo
267-
message="Customizing homebrew for ${project.version} with checksum ${checksum} in ${repo} repo" />
268-
<copy file="${basedir}/src/main/homebrew/springboot.rb"
269-
tofile="${project.build.directory}/springboot.rb" overwrite="true">
258+
<checksum algorithm="sha-1" file="${project.build.directory}/spring-boot-cli-${project.version}-bin.tar.gz" property="checksum" />
259+
<echo message="Customizing homebrew for ${project.version} with checksum ${checksum} in ${repo} repo" />
260+
<copy file="${basedir}/src/main/homebrew/springboot.rb" tofile="${project.build.directory}/springboot.rb" overwrite="true">
270261
<filterchain>
271262
<expandproperties />
272263
</filterchain>
273264
</copy>
274-
<attachartifact file="${project.build.directory}/springboot.rb"
275-
classifier="homebrew" type="rb" />
265+
<attachartifact file="${project.build.directory}/springboot.rb" classifier="homebrew" type="rb" />
276266
</target>
277267
</configuration>
278268
</execution>
@@ -339,7 +329,7 @@
339329
</goals>
340330
</pluginExecutionFilter>
341331
<action>
342-
<ignore></ignore>
332+
<ignore />
343333
</action>
344334
</pluginExecution>
345335
</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>1.0.0.BUILD-SNAPSHOT</version>
6+
<version>1.0.0.RC3</version>
87
<packaging>pom</packaging>
98
<properties>
109
<activemq.version>5.7.0</activemq.version>

spring-boot-docs/pom.xml

Lines changed: 4 additions & 8 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>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RC3</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-docs</artifactId>
@@ -78,11 +77,8 @@
7877
</goals>
7978
<configuration>
8079
<target>
81-
<zip
82-
destfile="${project.build.directory}/${project.name}-${project.version}.zip">
83-
<zipfileset
84-
src="${project.build.directory}/${project.name}-${project.version}-javadoc.jar"
85-
prefix="api" />
80+
<zip destfile="${project.build.directory}/${project.name}-${project.version}.zip">
81+
<zipfileset src="${project.build.directory}/${project.name}-${project.version}-javadoc.jar" prefix="api" />
8682
</zip>
8783

8884
</target>

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>1.0.0.BUILD-SNAPSHOT</version>
6+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RC3</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-integration-tests</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>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RC3</version>
98
<relativePath>../spring-boot-dependencies</relativePath>
109
</parent>
1110
<artifactId>spring-boot-parent</artifactId>
@@ -268,7 +267,7 @@
268267
</goals>
269268
</pluginExecutionFilter>
270269
<action>
271-
<ignore></ignore>
270+
<ignore />
272271
</action>
273272
</pluginExecution>
274273
<pluginExecution>
@@ -287,7 +286,7 @@
287286
</goals>
288287
</pluginExecutionFilter>
289288
<action>
290-
<ignore></ignore>
289+
<ignore />
291290
</action>
292291
</pluginExecution>
293292
</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>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RC3</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>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RC3</version>
109
</parent>
1110
<artifactId>spring-boot-sample-batch</artifactId>
1211
<packaging>jar</packaging>

0 commit comments

Comments
 (0)