Skip to content

Commit 4b9fddd

Browse files
committed
Release version 0.6.0.RELEASE
1 parent de83ab2 commit 4b9fddd

File tree

5 files changed

+23
-36
lines changed

5 files changed

+23
-36
lines changed

initializr-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>io.spring.initializr</groupId>
76
<artifactId>initializr</artifactId>
8-
<version>0.6.0.BUILD-SNAPSHOT</version>
7+
<version>0.6.0.RELEASE</version>
98
</parent>
109
<artifactId>initializr-actuator</artifactId>
1110
<name>Spring Initializr :: Actuator</name>

initializr-docs/pom.xml

Lines changed: 9 additions & 17 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>io.spring.initializr</groupId>
76
<artifactId>initializr</artifactId>
8-
<version>0.6.0.BUILD-SNAPSHOT</version>
7+
<version>0.6.0.RELEASE</version>
98
</parent>
109
<artifactId>initializr-docs</artifactId>
1110
<name>Spring Initializr :: Docs</name>
@@ -224,8 +223,7 @@
224223
<include name="**/*.epub" />
225224
</fileset>
226225
</copy>
227-
<move file="${basedir}/target/contents/reference/epub/index.epub"
228-
tofile="${basedir}/target/contents/reference/epub/initializr-reference.epub" />
226+
<move file="${basedir}/target/contents/reference/epub/index.epub" tofile="${basedir}/target/contents/reference/epub/initializr-reference.epub" />
229227
</postProcess>
230228
</configuration>
231229
</execution>
@@ -266,8 +264,7 @@
266264
</goals>
267265
<configuration>
268266
<target>
269-
<zip
270-
destfile="${project.build.directory}/${project.artifactId}-${project.version}.zip">
267+
<zip destfile="${project.build.directory}/${project.artifactId}-${project.version}.zip">
271268
<fileset dir="${project.build.directory}/contents" />
272269
</zip>
273270
</target>
@@ -285,20 +282,15 @@
285282
<taskdef resource="net/sf/antcontrib/antcontrib.properties" />
286283
<taskdef name="stringutil" classname="ise.antelope.tasks.StringUtilTask" />
287284
<var name="version-type" value="${project.version}" />
288-
<propertyregex property="version-type" override="true"
289-
input="${version-type}" regexp=".*\.(.*)" replace="\1" />
290-
<propertyregex property="version-type" override="true"
291-
input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
292-
<propertyregex property="version-type" override="true"
293-
input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
294-
<propertyregex property="version-type" override="true"
295-
input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
285+
<propertyregex property="version-type" override="true" input="${version-type}" regexp=".*\.(.*)" replace="\1" />
286+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(M)\d+" replace="MILESTONE" />
287+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="(RC)\d+" replace="MILESTONE" />
288+
<propertyregex property="version-type" override="true" input="${version-type}" regexp="BUILD-(.*)" replace="SNAPSHOT" />
296289
<stringutil string="${version-type}" property="initializr-repo">
297290
<lowercase />
298291
</stringutil>
299292
<var name="github-tag" value="v${project.version}" />
300-
<propertyregex property="github-tag" override="true"
301-
input="${github-tag}" regexp=".*SNAPSHOT" replace="master" />
293+
<propertyregex property="github-tag" override="true" input="${github-tag}" regexp=".*SNAPSHOT" replace="master" />
302294
</target>
303295
</configuration>
304296
</execution>

initializr-generator/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>io.spring.initializr</groupId>
76
<artifactId>initializr</artifactId>
8-
<version>0.6.0.BUILD-SNAPSHOT</version>
7+
<version>0.6.0.RELEASE</version>
98
</parent>
109
<artifactId>initializr-generator</artifactId>
1110
<name>Spring Initializr :: Generator</name>

initializr-web/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>io.spring.initializr</groupId>
76
<artifactId>initializr</artifactId>
8-
<version>0.6.0.BUILD-SNAPSHOT</version>
7+
<version>0.6.0.RELEASE</version>
98
</parent>
109
<artifactId>initializr-web</artifactId>
1110
<name>Spring Initializr :: Web</name>

pom.xml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
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">
53
<modelVersion>4.0.0</modelVersion>
64
<groupId>io.spring.initializr</groupId>
75
<artifactId>initializr</artifactId>
8-
<version>0.6.0.BUILD-SNAPSHOT</version>
6+
<version>0.6.0.RELEASE</version>
97
<packaging>pom</packaging>
108
<name>Spring Initializr</name>
119
<description>A web-based quickstart generator for Spring projects</description>
@@ -57,28 +55,28 @@
5755
<dependency>
5856
<groupId>io.spring.initializr</groupId>
5957
<artifactId>initializr-actuator</artifactId>
60-
<version>0.6.0.BUILD-SNAPSHOT</version>
58+
<version>0.6.0.RELEASE</version>
6159
</dependency>
6260
<dependency>
6361
<groupId>io.spring.initializr</groupId>
6462
<artifactId>initializr-generator</artifactId>
65-
<version>0.6.0.BUILD-SNAPSHOT</version>
63+
<version>0.6.0.RELEASE</version>
6664
</dependency>
6765
<dependency>
6866
<groupId>io.spring.initializr</groupId>
6967
<artifactId>initializr-generator</artifactId>
70-
<version>0.6.0.BUILD-SNAPSHOT</version>
68+
<version>0.6.0.RELEASE</version>
7169
<type>test-jar</type>
7270
</dependency>
7371
<dependency>
7472
<groupId>io.spring.initializr</groupId>
7573
<artifactId>initializr-web</artifactId>
76-
<version>0.6.0.BUILD-SNAPSHOT</version>
74+
<version>0.6.0.RELEASE</version>
7775
</dependency>
7876
<dependency>
7977
<groupId>io.spring.initializr</groupId>
8078
<artifactId>initializr-web</artifactId>
81-
<version>0.6.0.BUILD-SNAPSHOT</version>
79+
<version>0.6.0.RELEASE</version>
8280
<type>test-jar</type>
8381
</dependency>
8482

@@ -299,7 +297,7 @@
299297
</goals>
300298
</pluginExecutionFilter>
301299
<action>
302-
<ignore></ignore>
300+
<ignore />
303301
</action>
304302
</pluginExecution>
305303
</pluginExecutions>

0 commit comments

Comments
 (0)