|
26 | 26 | <groupId>io.netty</groupId>
|
27 | 27 | <artifactId>netty-parent</artifactId>
|
28 | 28 | <packaging>pom</packaging>
|
29 |
| - <version>4.0.13.Final-SNAPSHOT</version> |
| 29 | + <version>4.0.13.Final</version> |
30 | 30 |
|
31 | 31 | <name>Netty</name>
|
32 | 32 | <url>http://netty.io/</url>
|
|
53 | 53 | <url>https://github.com/netty/netty</url>
|
54 | 54 | <connection>scm:git:git://github.com/netty/netty.git</connection>
|
55 | 55 | < developerConnection>scm:git:ssh:// [email protected]/netty/netty.git</ developerConnection>
|
56 |
| - <tag>HEAD</tag> |
| 56 | + <tag>netty-4.0.13.Final</tag> |
57 | 57 | </scm>
|
58 | 58 |
|
59 | 59 | <developers>
|
|
491 | 491 | <taskdef resource="net/sf/antcontrib/antlib.xml" />
|
492 | 492 |
|
493 | 493 | <!-- 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"> |
498 | 495 | <arg value="log" />
|
499 | 496 | <arg value="-1" />
|
500 | 497 | <arg value="--format=format:%h" />
|
|
509 | 506 | </else>
|
510 | 507 | </if>
|
511 | 508 |
|
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"> |
516 | 510 | <arg value="log" />
|
517 | 511 | <arg value="-1" />
|
518 | 512 | <arg value="--format=format:%H" />
|
|
527 | 521 | </else>
|
528 | 522 | </if>
|
529 | 523 |
|
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"> |
534 | 525 | <arg value="log" />
|
535 | 526 | <arg value="-1" />
|
536 | 527 | <arg value="--format=format:%cd" />
|
|
546 | 537 | </else>
|
547 | 538 | </if>
|
548 | 539 |
|
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"> |
553 | 541 | <arg value="status" />
|
554 | 542 | <arg value="--porcelain" />
|
555 | 543 | </exec>
|
|
576 | 564 |
|
577 | 565 | <!-- Generate the .properties file. -->
|
578 | 566 | <!--
|
579 |
| - <property name="metaInfDir" value="${project.basedir}/src/main/resources/META-INF"/> |
| 567 | + <property name="metaInfDir" value="${project.basedir}/src/main/resources/META-INF" /> |
580 | 568 | -->
|
581 |
| - <property name="metaInfDir" value="${project.build.outputDirectory}/META-INF"/> |
| 569 | + <property name="metaInfDir" value="${project.build.outputDirectory}/META-INF" /> |
582 | 570 | <property name="versionPropFile" value="${metaInfDir}/${project.groupId}.versions.properties" />
|
583 | 571 | <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}" /> |
595 | 581 | </propertyfile>
|
596 | 582 | </target>
|
597 | 583 | </configuration>
|
|
0 commit comments