Skip to content

Commit

Permalink
Release version 1.0.0.RC4
Browse files Browse the repository at this point in the history
  • Loading branch information
spring-builds committed Mar 4, 2014
1 parent 02faa0a commit cb8668a
Showing 67 changed files with 95 additions and 122 deletions.
23 changes: 8 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-build</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<packaging>pom</packaging>
<prerequisites>
<maven>3.0.0</maven>
@@ -96,20 +95,15 @@
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
<var name="version-type" value="${project.version}" />
<propertyregex property="version-type" override="true"
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
<propertyregex property="version-type" override="true"
input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
<propertyregex property="version-type" override="true"
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
<propertyregex property="version-type" override="true"
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
<stringutil string="${version-type}" property="profile">
<lowercase />
</stringutil>
<echo message="Writing settings for ${profile} profile" />
<copy file=".settings-template.xml" tofile="settings.xml"
overwrite="true">
<copy file=".settings-template.xml" tofile="settings.xml" overwrite="true">
<filterset>
<filter token="profile" value="${profile}" />
</filterset>
@@ -126,8 +120,7 @@
<inherited>false</inherited>
<configuration>
<target>
<property name="sourceFile"
value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
<property name="sourceFile" value="spring-boot-starters/spring-boot-starter-parent/pom.xml" />
<xslt in="${sourceFile}" out="${sourceFile}.new" force="true">
<style>
<string><![CDATA[
2 changes: 1 addition & 1 deletion spring-boot-actuator/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<relativePath>../spring-boot-parent</relativePath>
</parent>
<artifactId>spring-boot-actuator</artifactId>
2 changes: 1 addition & 1 deletion spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<relativePath>../spring-boot-parent</relativePath>
</parent>
<artifactId>spring-boot-autoconfigure</artifactId>
2 changes: 1 addition & 1 deletion spring-boot-cli/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<relativePath>../spring-boot-parent</relativePath>
</parent>
<artifactId>spring-boot-cli</artifactId>
5 changes: 2 additions & 3 deletions spring-boot-dependencies/pom.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<packaging>pom</packaging>
<properties>
<activemq.version>5.7.0</activemq.version>
2 changes: 1 addition & 1 deletion spring-boot-docs/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<relativePath>../spring-boot-parent</relativePath>
</parent>
<artifactId>spring-boot-docs</artifactId>
2 changes: 1 addition & 1 deletion spring-boot-full-build/pom.xml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-full-build</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<packaging>pom</packaging>
<modules>
<module>../</module>
2 changes: 1 addition & 1 deletion spring-boot-integration-tests/pom.xml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<relativePath>../spring-boot-parent</relativePath>
</parent>
<artifactId>spring-boot-integration-tests</artifactId>
5 changes: 2 additions & 3 deletions spring-boot-parent/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<relativePath>../spring-boot-dependencies</relativePath>
</parent>
<artifactId>spring-boot-parent</artifactId>
5 changes: 2 additions & 3 deletions spring-boot-samples/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
<relativePath>../spring-boot-starters/spring-boot-starter-parent</relativePath>
</parent>
<artifactId>spring-boot-samples</artifactId>
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-actuator-log4j</artifactId>
<packaging>jar</packaging>
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-actuator-noweb</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-actuator-ui</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-actuator/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-actuator</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-amqp/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-amqp</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-aop/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-aop</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-batch/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-batch</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-data-jpa</artifactId>
<packaging>jar</packaging>
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-data-mongodb</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-data-redis/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-data-redis</artifactId>
<packaging>jar</packaging>
5 changes: 2 additions & 3 deletions spring-boot-samples/spring-boot-sample-data-rest/pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-data-rest</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-integration/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-integration</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-jetty/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-jetty</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-profile/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-profile</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-secure/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-secure</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-servlet/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-servlet</artifactId>
<packaging>war</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-simple/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-simple</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-tomcat/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-tomcat</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-traditional/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-traditional</artifactId>
<packaging>war</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-web-jsp/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-web-jsp</artifactId>
<packaging>war</packaging>
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-web-method-security</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-web-secure/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-web-secure</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-web-static/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-web-static</artifactId>
<packaging>war</packaging>
5 changes: 2 additions & 3 deletions spring-boot-samples/spring-boot-sample-web-ui/pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-web-ui</artifactId>
<packaging>jar</packaging>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-websocket/pom.xml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<properties>
<main.basedir>${basedir}/../..</main.basedir>
2 changes: 1 addition & 1 deletion spring-boot-samples/spring-boot-sample-xml/pom.xml
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<!-- Your own application should inherit from spring-boot-starter-parent -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-samples</artifactId>
<version>1.0.0.BUILD-SNAPSHOT</version>
<version>1.0.0.RC4</version>
</parent>
<artifactId>spring-boot-sample-xml</artifactId>
<packaging>jar</packaging>
Loading

0 comments on commit cb8668a

Please sign in to comment.