forked from netty/netty
-
Notifications
You must be signed in to change notification settings - Fork 0
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.0.13.Final
- Loading branch information
Norman Maurer
committed
Nov 28, 2013
1 parent
0918f3e
commit 5fe7596
Showing
16 changed files
with
37 additions
and
54 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
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.0.13.Final-SNAPSHOT</version> | ||
<version>4.0.13.Final</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.0.13.Final</tag> | ||
</scm> | ||
|
||
<developers> | ||
|
@@ -491,10 +491,7 @@ | |
<taskdef resource="net/sf/antcontrib/antlib.xml" /> | ||
|
||
<!-- Get the information about the latest commit --> | ||
<exec executable="git" | ||
outputproperty="gitOutput.shortCommitHash" | ||
resultproperty="gitExitCode.shortCommitHash" | ||
failonerror="false" failifexecutionfails="false"> | ||
<exec executable="git" outputproperty="gitOutput.shortCommitHash" resultproperty="gitExitCode.shortCommitHash" failonerror="false" failifexecutionfails="false"> | ||
<arg value="log" /> | ||
<arg value="-1" /> | ||
<arg value="--format=format:%h" /> | ||
|
@@ -509,10 +506,7 @@ | |
</else> | ||
</if> | ||
|
||
<exec executable="git" | ||
outputproperty="gitOutput.longCommitHash" | ||
resultproperty="gitExitCode.longCommitHash" | ||
failonerror="false" failifexecutionfails="false"> | ||
<exec executable="git" outputproperty="gitOutput.longCommitHash" resultproperty="gitExitCode.longCommitHash" failonerror="false" failifexecutionfails="false"> | ||
<arg value="log" /> | ||
<arg value="-1" /> | ||
<arg value="--format=format:%H" /> | ||
|
@@ -527,10 +521,7 @@ | |
</else> | ||
</if> | ||
|
||
<exec executable="git" | ||
outputproperty="gitOutput.commitDate" | ||
resultproperty="gitExitCode.commitDate" | ||
failonerror="false" failifexecutionfails="false"> | ||
<exec executable="git" outputproperty="gitOutput.commitDate" resultproperty="gitExitCode.commitDate" failonerror="false" failifexecutionfails="false"> | ||
<arg value="log" /> | ||
<arg value="-1" /> | ||
<arg value="--format=format:%cd" /> | ||
|
@@ -546,10 +537,7 @@ | |
</else> | ||
</if> | ||
|
||
<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> | ||
|
@@ -576,22 +564,20 @@ | |
|
||
<!-- Generate the .properties file. --> | ||
<!-- | ||
<property name="metaInfDir" value="${project.basedir}/src/main/resources/META-INF"/> | ||
<property name="metaInfDir" value="${project.basedir}/src/main/resources/META-INF" /> | ||
--> | ||
<property name="metaInfDir" value="${project.build.outputDirectory}/META-INF"/> | ||
<property name="metaInfDir" value="${project.build.outputDirectory}/META-INF" /> | ||
<property name="versionPropFile" value="${metaInfDir}/${project.groupId}.versions.properties" /> | ||
<mkdir dir="${metaInfDir}" /> | ||
<delete file="${versionPropFile}" quiet="true"/> | ||
|
||
<propertyfile | ||
file="${versionPropFile}" | ||
comment="Generated by netty-parent/pom.xml"> | ||
<entry key="${project.artifactId}.version" value="${project.version}"/> | ||
<entry key="${project.artifactId}.buildDate" type="date" value="now" pattern="yyyy-MM-dd HH:mm:ss Z"/> | ||
<entry key="${project.artifactId}.commitDate" value="${commitDate}"/> | ||
<entry key="${project.artifactId}.shortCommitHash" value="${shortCommitHash}"/> | ||
<entry key="${project.artifactId}.longCommitHash" value="${longCommitHash}"/> | ||
<entry key="${project.artifactId}.repoStatus" value="${repoStatus}"/> | ||
<delete file="${versionPropFile}" quiet="true" /> | ||
|
||
<propertyfile file="${versionPropFile}" comment="Generated by netty-parent/pom.xml"> | ||
<entry key="${project.artifactId}.version" value="${project.version}" /> | ||
<entry key="${project.artifactId}.buildDate" type="date" value="now" pattern="yyyy-MM-dd HH:mm:ss Z" /> | ||
<entry key="${project.artifactId}.commitDate" value="${commitDate}" /> | ||
<entry key="${project.artifactId}.shortCommitHash" value="${shortCommitHash}" /> | ||
<entry key="${project.artifactId}.longCommitHash" value="${longCommitHash}" /> | ||
<entry key="${project.artifactId}.repoStatus" value="${repoStatus}" /> | ||
</propertyfile> | ||
</target> | ||
</configuration> | ||
|
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