forked from netty/netty
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[maven-release-plugin] prepare release netty-4.1.0.Beta2
- Loading branch information
Showing
22 changed files
with
33 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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://[email protected]/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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters