Skip to content

Commit 2475d9c

Browse files
committed
Release version 1.0.0.RC1
1 parent 595cb6d commit 2475d9c

File tree

61 files changed

+148
-229
lines changed

Some content is hidden

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

61 files changed

+148
-229
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.RC1</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.RC1</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.RC1</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-autoconfigure</artifactId>

spring-boot-cli/pom.xml

Lines changed: 13 additions & 26 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.RC1</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>${project.version}</version>
33+
<version>1.0.0.RC1</version>
3534
<type>pom</type>
3635
<scope>import</scope>
3736
</dependency>
@@ -276,10 +275,7 @@
276275
<typedef resource="foundrylogic/vpp/typedef.properties" />
277276
<taskdef resource="foundrylogic/vpp/taskdef.properties" />
278277
<property name="dependencies" value="${project.parent}" />
279-
<vppcopy
280-
file="${basedir}/src/main/resources/META-INF/springcli.properties.vpp"
281-
tofile="${project.build.directory}/generated-resources/META-INF/springcli.properties"
282-
overwrite="true" />
278+
<vppcopy file="${basedir}/src/main/resources/META-INF/springcli.properties.vpp" tofile="${project.build.directory}/generated-resources/META-INF/springcli.properties" overwrite="true" />
283279
</target>
284280
</configuration>
285281
<goals>
@@ -298,30 +294,21 @@
298294
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
299295
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
300296
<var name="version-type" value="${project.version}" />
301-
<propertyregex property="version-type" override="true"
302-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
303-
<propertyregex property="version-type" override="true"
304-
input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
305-
<propertyregex property="version-type" override="true"
306-
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
307-
<propertyregex property="version-type" override="true"
308-
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
297+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
298+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
299+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
300+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
309301
<stringutil string="${version-type}" property="repo">
310302
<lowercase />
311303
</stringutil>
312-
<checksum algorithm="sha-1"
313-
file="${project.build.directory}/spring-boot-cli-${project.version}-bin.tar.gz"
314-
property="checksum" />
315-
<echo
316-
message="Customizing homebrew for ${project.version} with checksum ${checksum} in ${repo} repo" />
317-
<copy file="${basedir}/src/main/homebrew/springboot.rb"
318-
tofile="${project.build.directory}/springboot.rb" overwrite="true">
304+
<checksum algorithm="sha-1" file="${project.build.directory}/spring-boot-cli-${project.version}-bin.tar.gz" property="checksum" />
305+
<echo message="Customizing homebrew for ${project.version} with checksum ${checksum} in ${repo} repo" />
306+
<copy file="${basedir}/src/main/homebrew/springboot.rb" tofile="${project.build.directory}/springboot.rb" overwrite="true">
319307
<filterchain>
320308
<expandproperties />
321309
</filterchain>
322310
</copy>
323-
<attachartifact file="${project.build.directory}/springboot.rb"
324-
classifier="homebrew" type="rb" />
311+
<attachartifact file="${project.build.directory}/springboot.rb" classifier="homebrew" type="rb" />
325312
</target>
326313
</configuration>
327314
</execution>
@@ -388,7 +375,7 @@
388375
</goals>
389376
</pluginExecutionFilter>
390377
<action>
391-
<ignore></ignore>
378+
<ignore />
392379
</action>
393380
</pluginExecution>
394381
</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.RC1</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.RC1</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-docs</artifactId>
@@ -72,11 +71,8 @@
7271
</goals>
7372
<configuration>
7473
<target>
75-
<zip
76-
destfile="${project.build.directory}/${project.name}-${project.version}.zip">
77-
<zipfileset
78-
src="${project.build.directory}/${project.name}-${project.version}-javadoc.jar"
79-
prefix="api" />
74+
<zip destfile="${project.build.directory}/${project.name}-${project.version}.zip">
75+
<zipfileset src="${project.build.directory}/${project.name}-${project.version}-javadoc.jar" prefix="api" />
8076
</zip>
8177

8278
</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.RC1</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.RC1</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.RC1</version>
98
<relativePath>../spring-boot-dependencies</relativePath>
109
</parent>
1110
<artifactId>spring-boot-parent</artifactId>
@@ -283,7 +282,7 @@
283282
</goals>
284283
</pluginExecutionFilter>
285284
<action>
286-
<ignore></ignore>
285+
<ignore />
287286
</action>
288287
</pluginExecution>
289288
<pluginExecution>
@@ -302,7 +301,7 @@
302301
</goals>
303302
</pluginExecutionFilter>
304303
<action>
305-
<ignore></ignore>
304+
<ignore />
306305
</action>
307306
</pluginExecution>
308307
</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.RC1</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.RC1</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.RC1</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.RC1</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.RC1</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.RC1</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.RC1</version>
109
</parent>
1110
<artifactId>spring-boot-sample-aop</artifactId>
1211
<packaging>jar</packaging>

0 commit comments

Comments
 (0)