Browse Source

Specification Version MUST be in DeweyDecimal notation with maximum 3 places (ie major.minor.micro).

Also made jar implement the org.apache.tools.ant extension (aswell as the specification for the package org.apache.tools.ant). As a consequence put Implementation-Version into dewey decimal form aswell.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272151 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
4402a1fb9b
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      build.xml

+ 5
- 2
build.xml View File

@@ -19,6 +19,7 @@
<property name="Name" value="Apache Ant"/>
<property name="name" value="ant"/>
<property name="version" value="1.5alpha"/>
<property name="manifest-version" value="1.4.9"/>

<property name="debug" value="true" />
<property name="chmod.fail" value="true" />
@@ -572,16 +573,18 @@

<manifest>
<section name="${ant.package}">
<attribute name="Extension-name"
value="org.apache.tools.ant" />
<attribute name="Specification-Title"
value="Apache Ant" />
<attribute name="Specification-Version"
value="${version}" />
value="${manifest-version}" />
<attribute name="Specification-Vendor"
value="Apache Software Foundation" />
<attribute name="Implementation-Title"
value="org.apache.tools.ant" />
<attribute name="Implementation-Version"
value="${version} ${TODAY}" />
value="${manifest-version}" />
<attribute name="Implementation-Vendor"
value="Apache Software Foundation" />
</section>


Loading…
Cancel
Save