Skip to content

Commit 15e9dbe

Browse files
committed
Next development version
1 parent 26e55e5 commit 15e9dbe

File tree

68 files changed

+189
-288
lines changed

Some content is hidden

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

68 files changed

+189
-288
lines changed

pom.xml

+8-15
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.1.BUILD-SNAPSHOT</version>
87
<packaging>pom</packaging>
98
<name>Spring Boot Build</name>
109
<description>Spring Boot Build</description>
@@ -134,20 +133,15 @@
134133
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
135134
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
136135
<var name="version-type" value="${project.version}" />
137-
<propertyregex property="version-type" override="true"
138-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
139-
<propertyregex property="version-type" override="true"
140-
input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
141-
<propertyregex property="version-type" override="true"
142-
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
143-
<propertyregex property="version-type" override="true"
144-
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
136+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
137+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
138+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
139+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
145140
<stringutil string="${version-type}" property="profile">
146141
<lowercase />
147142
</stringutil>
148143
<echo message="Writing settings for ${profile} profile" />
149-
<copy file=".settings-template.xml" tofile="settings.xml"
150-
overwrite="true">
144+
<copy file=".settings-template.xml" tofile="settings.xml" overwrite="true">
151145
<filterset>
152146
<filter token="profile" value="${profile}" />
153147
</filterset>
@@ -164,8 +158,7 @@
164158
<inherited>false</inherited>
165159
<configuration>
166160
<target>
167-
<property name="sourceFile"
168-
value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
161+
<property name="sourceFile" value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
169162
<xslt in="${sourceFile}" out="${sourceFile}.new" force="true">
170163
<style>
171164
<string><![CDATA[

spring-boot-actuator/pom.xml

+2-3
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.1.BUILD-SNAPSHOT</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-actuator</artifactId>

spring-boot-autoconfigure/pom.xml

+2-3
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.1.BUILD-SNAPSHOT</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-autoconfigure</artifactId>

spring-boot-cli/pom.xml

+10-20
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.1.BUILD-SNAPSHOT</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-cli</artifactId>
@@ -265,30 +264,21 @@
265264
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
266265
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
267266
<var name="version-type" value="${project.version}" />
268-
<propertyregex property="version-type" override="true"
269-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
270-
<propertyregex property="version-type" override="true"
271-
input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
272-
<propertyregex property="version-type" override="true"
273-
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
274-
<propertyregex property="version-type" override="true"
275-
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
267+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
268+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
269+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
270+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
276271
<stringutil string="${version-type}" property="repo">
277272
<lowercase />
278273
</stringutil>
279-
<checksum algorithm="sha-1"
280-
file="${project.build.directory}/spring-boot-cli-${project.version}-bin.tar.gz"
281-
property="checksum" />
282-
<echo
283-
message="Customizing homebrew for ${project.version} with checksum ${checksum} in ${repo} repo" />
284-
<copy file="${basedir}/src/main/homebrew/springboot.rb"
285-
tofile="${project.build.directory}/springboot.rb" overwrite="true">
274+
<checksum algorithm="sha-1" file="${project.build.directory}/spring-boot-cli-${project.version}-bin.tar.gz" property="checksum" />
275+
<echo message="Customizing homebrew for ${project.version} with checksum ${checksum} in ${repo} repo" />
276+
<copy file="${basedir}/src/main/homebrew/springboot.rb" tofile="${project.build.directory}/springboot.rb" overwrite="true">
286277
<filterchain>
287278
<expandproperties />
288279
</filterchain>
289280
</copy>
290-
<attachartifact file="${project.build.directory}/springboot.rb"
291-
classifier="homebrew" type="rb" />
281+
<attachartifact file="${project.build.directory}/springboot.rb" classifier="homebrew" type="rb" />
292282
</target>
293283
</configuration>
294284
</execution>

spring-boot-dependencies/pom.xml

+2-3
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.1.BUILD-SNAPSHOT</version>
87
<packaging>pom</packaging>
98
<name>Spring Boot Dependencies</name>
109
<description>Spring Boot Dependencies</description>

spring-boot-docs/pom.xml

+11-22
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.1.BUILD-SNAPSHOT</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-docs</artifactId>
@@ -199,8 +198,7 @@
199198
<include name="**/*.pdf" />
200199
</fileset>
201200
</copy>
202-
<move file="${basedir}/target/contents/reference/pdf/index.pdf"
203-
tofile="${basedir}/target/contents/reference/pdf/spring-boot-reference.pdf" />
201+
<move file="${basedir}/target/contents/reference/pdf/index.pdf" tofile="${basedir}/target/contents/reference/pdf/spring-boot-reference.pdf" />
204202
</postProcess>
205203
</configuration>
206204
</execution>
@@ -219,8 +217,7 @@
219217
<include name="**/*.epub" />
220218
</fileset>
221219
</copy>
222-
<move file="${basedir}/target/contents/reference/epub/index.epub"
223-
tofile="${basedir}/target/contents/reference/epub/spring-boot-reference.epub" />
220+
<move file="${basedir}/target/contents/reference/epub/index.epub" tofile="${basedir}/target/contents/reference/epub/spring-boot-reference.epub" />
224221
</postProcess>
225222
</configuration>
226223
</execution>
@@ -261,11 +258,8 @@
261258
</goals>
262259
<configuration>
263260
<target>
264-
<zip
265-
destfile="${project.build.directory}/${project.artifactId}-${project.version}.zip">
266-
<zipfileset
267-
src="${project.build.directory}/${project.artifactId}-${project.version}-javadoc.jar"
268-
prefix="api" />
261+
<zip destfile="${project.build.directory}/${project.artifactId}-${project.version}.zip">
262+
<zipfileset src="${project.build.directory}/${project.artifactId}-${project.version}-javadoc.jar" prefix="api" />
269263
<fileset dir="${project.build.directory}/contents" />
270264
</zip>
271265
</target>
@@ -283,20 +277,15 @@
283277
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
284278
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
285279
<var name="version-type" value="${project.version}" />
286-
<propertyregex property="version-type" override="true"
287-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
288-
<propertyregex property="version-type" override="true"
289-
input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
290-
<propertyregex property="version-type" override="true"
291-
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
292-
<propertyregex property="version-type" override="true"
293-
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
280+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
281+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
282+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
283+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
294284
<stringutil string="${version-type}" property="spring-boot-repo">
295285
<lowercase />
296286
</stringutil>
297287
<var name="github-tag" value="v${project.version}" />
298-
<propertyregex property="github-tag" override="true"
299-
input="${github-tag}" regexp=".*SNAPSHOT" replace="master" />
288+
<propertyregex property="github-tag" override="true" input="${github-tag}" regexp=".*SNAPSHOT" replace="master" />
300289
</target>
301290
</configuration>
302291
</execution>

spring-boot-full-build/pom.xml

+2-3
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.1.BUILD-SNAPSHOT</version>
87
<packaging>pom</packaging>
98
<name>Spring Boot Full Build</name>
109
<description>Spring Boot Full Build</description>

spring-boot-integration-tests/pom.xml

+2-3
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.1.BUILD-SNAPSHOT</version>
98
<relativePath>../spring-boot-parent</relativePath>
109
</parent>
1110
<artifactId>spring-boot-integration-tests</artifactId>

spring-boot-parent/pom.xml

+2-3
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.1.BUILD-SNAPSHOT</version>
98
<relativePath>../spring-boot-dependencies</relativePath>
109
</parent>
1110
<artifactId>spring-boot-parent</artifactId>

spring-boot-samples/pom.xml

+2-3
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.1.BUILD-SNAPSHOT</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

+2-3
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.1.BUILD-SNAPSHOT</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator-log4j</artifactId>
1211
<name>Spring Boot Actuator Log4J Sample</name>

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

+2-3
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.1.BUILD-SNAPSHOT</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator-noweb</artifactId>
1211
<name>Spring Boot Actuator Non-Web Sample</name>

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

+2-3
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.1.BUILD-SNAPSHOT</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator-ui</artifactId>
1211
<name>Spring Boot Actuator UI Sample</name>

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

+2-3
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.1.BUILD-SNAPSHOT</version>
109
</parent>
1110
<artifactId>spring-boot-sample-actuator</artifactId>
1211
<name>Spring Boot Actuator Sample</name>

0 commit comments

Comments
 (0)