Skip to content

Commit 5fe7596

Browse files
author
Norman Maurer
committed
[maven-release-plugin] prepare release netty-4.0.13.Final
1 parent 0918f3e commit 5fe7596

File tree

16 files changed

+37
-54
lines changed

16 files changed

+37
-54
lines changed

all/pom.xml

+6-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-all</artifactId>
@@ -241,23 +241,20 @@
241241
<configuration>
242242
<target>
243243
<taskdef resource="net/sf/antcontrib/antlib.xml" />
244-
<propertyselector
245-
property="versions"
246-
match="^(${project.groupId}:(?!netty-example)[^:]+:jar)$" select="\1"/>
244+
<propertyselector property="versions" match="^(${project.groupId}:(?!netty-example)[^:]+:jar)$" select="\1" />
247245
<for list="${versions}" param="x">
248246
<sequential>
249247
<unzip src="${@{x}}" dest="${dependencyVersionsDir}">
250248
<patternset>
251-
<include name="META-INF/${project.groupId}.versions.properties"/>
249+
<include name="META-INF/${project.groupId}.versions.properties" />
252250
</patternset>
253251
</unzip>
254-
<concat destfile="${project.build.outputDirectory}/META-INF/${project.groupId}.versions.properties"
255-
append="true">
256-
<path path="${dependencyVersionsDir}/META-INF/${project.groupId}.versions.properties"/>
252+
<concat destfile="${project.build.outputDirectory}/META-INF/${project.groupId}.versions.properties" append="true">
253+
<path path="${dependencyVersionsDir}/META-INF/${project.groupId}.versions.properties" />
257254
</concat>
258255
</sequential>
259256
</for>
260-
<delete dir="${dependencyVersionsDir}" quiet="true"/>
257+
<delete dir="${dependencyVersionsDir}" quiet="true" />
261258
</target>
262259
</configuration>
263260
</execution>

buffer/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-buffer</artifactId>

codec-http/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-codec-http</artifactId>

codec-socks/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-codec-socks</artifactId>

codec/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-codec</artifactId>

common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.netty</groupId>
2323
<artifactId>netty-parent</artifactId>
24-
<version>4.0.13.Final-SNAPSHOT</version>
24+
<version>4.0.13.Final</version>
2525
</parent>
2626

2727
<artifactId>netty-common</artifactId>

example/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.netty</groupId>
2323
<artifactId>netty-parent</artifactId>
24-
<version>4.0.13.Final-SNAPSHOT</version>
24+
<version>4.0.13.Final</version>
2525
</parent>
2626

2727
<artifactId>netty-example</artifactId>

handler/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-handler</artifactId>

microbench/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-microbench</artifactId>

pom.xml

+17-31
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<groupId>io.netty</groupId>
2727
<artifactId>netty-parent</artifactId>
2828
<packaging>pom</packaging>
29-
<version>4.0.13.Final-SNAPSHOT</version>
29+
<version>4.0.13.Final</version>
3030

3131
<name>Netty</name>
3232
<url>http://netty.io/</url>
@@ -53,7 +53,7 @@
5353
<url>https://github.com/netty/netty</url>
5454
<connection>scm:git:git://github.com/netty/netty.git</connection>
5555
<developerConnection>scm:git:ssh://[email protected]/netty/netty.git</developerConnection>
56-
<tag>HEAD</tag>
56+
<tag>netty-4.0.13.Final</tag>
5757
</scm>
5858

5959
<developers>
@@ -491,10 +491,7 @@
491491
<taskdef resource="net/sf/antcontrib/antlib.xml" />
492492

493493
<!-- Get the information about the latest commit -->
494-
<exec executable="git"
495-
outputproperty="gitOutput.shortCommitHash"
496-
resultproperty="gitExitCode.shortCommitHash"
497-
failonerror="false" failifexecutionfails="false">
494+
<exec executable="git" outputproperty="gitOutput.shortCommitHash" resultproperty="gitExitCode.shortCommitHash" failonerror="false" failifexecutionfails="false">
498495
<arg value="log" />
499496
<arg value="-1" />
500497
<arg value="--format=format:%h" />
@@ -509,10 +506,7 @@
509506
</else>
510507
</if>
511508

512-
<exec executable="git"
513-
outputproperty="gitOutput.longCommitHash"
514-
resultproperty="gitExitCode.longCommitHash"
515-
failonerror="false" failifexecutionfails="false">
509+
<exec executable="git" outputproperty="gitOutput.longCommitHash" resultproperty="gitExitCode.longCommitHash" failonerror="false" failifexecutionfails="false">
516510
<arg value="log" />
517511
<arg value="-1" />
518512
<arg value="--format=format:%H" />
@@ -527,10 +521,7 @@
527521
</else>
528522
</if>
529523

530-
<exec executable="git"
531-
outputproperty="gitOutput.commitDate"
532-
resultproperty="gitExitCode.commitDate"
533-
failonerror="false" failifexecutionfails="false">
524+
<exec executable="git" outputproperty="gitOutput.commitDate" resultproperty="gitExitCode.commitDate" failonerror="false" failifexecutionfails="false">
534525
<arg value="log" />
535526
<arg value="-1" />
536527
<arg value="--format=format:%cd" />
@@ -546,10 +537,7 @@
546537
</else>
547538
</if>
548539

549-
<exec executable="git"
550-
outputproperty="gitOutput.repoStatus"
551-
resultproperty="gitExitCode.repoStatus"
552-
failonerror="false" failifexecutionfails="false">
540+
<exec executable="git" outputproperty="gitOutput.repoStatus" resultproperty="gitExitCode.repoStatus" failonerror="false" failifexecutionfails="false">
553541
<arg value="status" />
554542
<arg value="--porcelain" />
555543
</exec>
@@ -576,22 +564,20 @@
576564

577565
<!-- Generate the .properties file. -->
578566
<!--
579-
<property name="metaInfDir" value="${project.basedir}/src/main/resources/META-INF"/>
567+
<property name="metaInfDir" value="${project.basedir}/src/main/resources/META-INF" />
580568
-->
581-
<property name="metaInfDir" value="${project.build.outputDirectory}/META-INF"/>
569+
<property name="metaInfDir" value="${project.build.outputDirectory}/META-INF" />
582570
<property name="versionPropFile" value="${metaInfDir}/${project.groupId}.versions.properties" />
583571
<mkdir dir="${metaInfDir}" />
584-
<delete file="${versionPropFile}" quiet="true"/>
585-
586-
<propertyfile
587-
file="${versionPropFile}"
588-
comment="Generated by netty-parent/pom.xml">
589-
<entry key="${project.artifactId}.version" value="${project.version}"/>
590-
<entry key="${project.artifactId}.buildDate" type="date" value="now" pattern="yyyy-MM-dd HH:mm:ss Z"/>
591-
<entry key="${project.artifactId}.commitDate" value="${commitDate}"/>
592-
<entry key="${project.artifactId}.shortCommitHash" value="${shortCommitHash}"/>
593-
<entry key="${project.artifactId}.longCommitHash" value="${longCommitHash}"/>
594-
<entry key="${project.artifactId}.repoStatus" value="${repoStatus}"/>
572+
<delete file="${versionPropFile}" quiet="true" />
573+
574+
<propertyfile file="${versionPropFile}" comment="Generated by netty-parent/pom.xml">
575+
<entry key="${project.artifactId}.version" value="${project.version}" />
576+
<entry key="${project.artifactId}.buildDate" type="date" value="now" pattern="yyyy-MM-dd HH:mm:ss Z" />
577+
<entry key="${project.artifactId}.commitDate" value="${commitDate}" />
578+
<entry key="${project.artifactId}.shortCommitHash" value="${shortCommitHash}" />
579+
<entry key="${project.artifactId}.longCommitHash" value="${longCommitHash}" />
580+
<entry key="${project.artifactId}.repoStatus" value="${repoStatus}" />
595581
</propertyfile>
596582
</target>
597583
</configuration>

tarball/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-tarball</artifactId>

testsuite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-testsuite</artifactId>

transport-rxtx/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.netty</groupId>
2323
<artifactId>netty-parent</artifactId>
24-
<version>4.0.13.Final-SNAPSHOT</version>
24+
<version>4.0.13.Final</version>
2525
</parent>
2626

2727
<artifactId>netty-transport-rxtx</artifactId>

transport-sctp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-transport-sctp</artifactId>

transport-udt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>io.netty</groupId>
2323
<artifactId>netty-parent</artifactId>
24-
<version>4.0.13.Final-SNAPSHOT</version>
24+
<version>4.0.13.Final</version>
2525
</parent>
2626

2727
<artifactId>netty-transport-udt</artifactId>

transport/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>io.netty</groupId>
2222
<artifactId>netty-parent</artifactId>
23-
<version>4.0.13.Final-SNAPSHOT</version>
23+
<version>4.0.13.Final</version>
2424
</parent>
2525

2626
<artifactId>netty-transport</artifactId>

0 commit comments

Comments
 (0)