Reorder Specification-Title/Vendor/Version and Implementation-Title/Vendor/Version

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114378 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
dion
2003-11-20 07:28:37 +00:00
parent 865ba76019
commit 1f9e73376e
2 changed files with 7 additions and 4 deletions

View File

@@ -47,12 +47,12 @@
<ant:attribute name="Build-Jdk" value="${java.version}"/>
<!-- added supplementary entries -->
<ant:attribute name="Extension-Name" value="${pom.artifactId}"/>
<ant:attribute name="Specification-Version" value="${pom.currentVersion}"/>
<ant:attribute name="Specification-Vendor" value="${pom.organization.name}"/>
<ant:attribute name="Specification-Title" value="${pom.shortDescription}"/>
<ant:attribute name="Implementation-Version" value="${pom.currentVersion}"/>
<ant:attribute name="Specification-Vendor" value="${pom.organization.name}"/>
<ant:attribute name="Specification-Version" value="${pom.currentVersion}"/>
<ant:attribute name="Implementation-Title" value="${pom.package}"/>
<ant:attribute name="Implementation-Vendor" value="${pom.organization.name}"/>
<ant:attribute name="Implementation-Vendor-Id" value="${pom.organization.identifier}"/>
<ant:attribute name="Implementation-Version" value="${pom.currentVersion}"/>
<maven:pluginVar var="mainclass" plugin="maven-java-plugin" property="maven.jar.mainclass" />
<j:if test="${!empty(mainclass)}">
<ant:attribute name="Main-Class" value="${mainclass}"/>

View File

@@ -9,6 +9,9 @@
<body>
<release version="1.4" date="in CVS">
<action dev="dion" issue="MAVEN-936" type="fix">
Reorder Specification-Title/Vendor/Version and Implementation-Title/Vendor/Version
</action>
<action dev="dion" issue="MAVEN-936" type="fix">
Use pom.currentVersion for Specification-Version
</action>