[maven-release-plugin] prepare release netty-4.1.0.Beta2

This commit is contained in:
Trustin Lee 2014-08-15 09:30:59 +09:00
parent ca29be5e77
commit e013b2400f
22 changed files with 33 additions and 46 deletions

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-all</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-buffer</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec-dns</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec-haproxy</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec-http</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec-memcache</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec-mqtt</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec-socks</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec-stomp</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-codec</artifactId>

View File

@ -21,7 +21,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-common</artifactId>

View File

@ -21,7 +21,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-example</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-handler</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-microbench</artifactId>

37
pom.xml
View File

@ -26,7 +26,7 @@
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<packaging>pom</packaging>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
<name>Netty</name>
<url>http://netty.io/</url>
@ -53,7 +53,7 @@
<url>https://github.com/netty/netty</url>
<connection>scm:git:git://github.com/netty/netty.git</connection>
<developerConnection>scm:git:ssh://git@github.com/netty/netty.git</developerConnection>
<tag>HEAD</tag>
<tag>netty-4.1.0.Beta2</tag>
</scm>
<developers>
@ -889,31 +889,18 @@
<taskdef resource="net/sf/antcontrib/antlib.xml" />
<!-- Get the information about the latest commit -->
<exec
executable="git" outputproperty="gitOutput.lastCommit" resultproperty="gitExitCode.lastCommit"
failonerror="false" failifexecutionfails="false">
<exec executable="git" outputproperty="gitOutput.lastCommit" resultproperty="gitExitCode.lastCommit" failonerror="false" failifexecutionfails="false">
<arg value="log" />
<arg value="-1" />
<arg value="--format=format:%h %H %cd" />
<arg value="--date=iso" />
</exec>
<propertyregex
property="shortCommitHash" input="${gitOutput.lastCommit}"
regexp="^([0-9a-f]+) .*$" select="\1" casesensitive="true"
defaultValue="0" />
<propertyregex
property="longCommitHash" input="${gitOutput.lastCommit}"
regexp="^[0-9a-f]+ ([0-9a-f]{40}) .*$" select="\1" casesensitive="true"
defaultValue="0000000000000000000000000000000000000000" />
<propertyregex
property="commitDate" input="${gitOutput.lastCommit}"
regexp="^[0-9a-f]+ [0-9a-f]{40} (.*)$" select="\1" casesensitive="true"
defaultValue="1970-01-01 00:00:00 +0000" />
<propertyregex property="shortCommitHash" input="${gitOutput.lastCommit}" regexp="^([0-9a-f]+) .*$" select="\1" casesensitive="true" defaultValue="0" />
<propertyregex property="longCommitHash" input="${gitOutput.lastCommit}" regexp="^[0-9a-f]+ ([0-9a-f]{40}) .*$" select="\1" casesensitive="true" defaultValue="0000000000000000000000000000000000000000" />
<propertyregex property="commitDate" input="${gitOutput.lastCommit}" regexp="^[0-9a-f]+ [0-9a-f]{40} (.*)$" select="\1" casesensitive="true" defaultValue="1970-01-01 00:00:00 +0000" />
<!-- Get the information abount whether the repository is clean or dirty -->
<exec
executable="git" outputproperty="gitOutput.repoStatus" resultproperty="gitExitCode.repoStatus"
failonerror="false" failifexecutionfails="false">
<exec executable="git" outputproperty="gitOutput.repoStatus" resultproperty="gitExitCode.repoStatus" failonerror="false" failifexecutionfails="false">
<arg value="status" />
<arg value="--porcelain" />
</exec>
@ -1100,7 +1087,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
@ -1113,7 +1100,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
@ -1126,7 +1113,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
@ -1139,7 +1126,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
<ignore />
</action>
</pluginExecution>
<pluginExecution>
@ -1152,7 +1139,7 @@
</goals>
</pluginExecutionFilter>
<action>
<ignore/>
<ignore />
</action>
</pluginExecution>
<pluginExecution>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-tarball</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-testsuite</artifactId>

View File

@ -19,7 +19,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-transport-native-epoll</artifactId>

View File

@ -21,7 +21,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-transport-rxtx</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-transport-sctp</artifactId>

View File

@ -21,7 +21,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-transport-udt</artifactId>

View File

@ -20,7 +20,7 @@
<parent>
<groupId>io.netty</groupId>
<artifactId>netty-parent</artifactId>
<version>4.1.0.Beta2-SNAPSHOT</version>
<version>4.1.0.Beta2</version>
</parent>
<artifactId>netty-transport</artifactId>