diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-10-21 10:17:29 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-10-21 10:17:29 +0000 |
commit | 134c4e30e38cb708e7f8843d4fcb642e0f8d5afa (patch) | |
tree | 252e21e610834e7e2bb289b1fc96136dd0975459 /build.xml | |
parent | 5a78747b7e4546f8006746dfeb7c427592aa1246 (diff) | |
download | xmlgraphics-fop-134c4e30e38cb708e7f8843d4fcb642e0f8d5afa.tar.gz xmlgraphics-fop-134c4e30e38cb708e7f8843d4fcb642e0f8d5afa.zip |
FOP now retrieves the version information from the Manifest or from SVN information if the Manifest is not available.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@327144 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -139,7 +139,7 @@ list of possible build targets. <exclude name="org/apache/fop/pdf/PDFEncryptionJCE.java" unless="jce.present"/> </patternset> - <property name="Name" value="Fop"/> + <property name="Name" value="Apache FOP"/> <property name="name" value="fop"/> <property name="NAME" value="FOP"/> <property name="version" value="0.90svn"/> @@ -437,10 +437,17 @@ list of possible build targets. <manifest> <attribute name="Main-Class" value="org.apache.fop.cli.Main"/> <!--attribute name="Class-Path" value="${manifest-classpath}"/--> - <attribute name="Implementation-Title" value="${Name}"/> - <attribute name="Implementation-Version" value="${version}"/> - <attribute name="Implementation-Vendor" value="The Apache Software Foundation (http://xmlgraphics.apache.org/fop/)"/> <attribute name="Build-Id" value="${ts} (${user.name} [${os.name} ${os.version} ${os.arch}, Java ${java.runtime.version}])"/> + <section name="org/apache/fop/"> + <attribute name="Specification-Title" value="XSL-FO - Extensible Stylesheet Language"/> + <attribute name="Specification-Version" value="1.0"/> + <attribute name="Specification-Vendor" value="World Wide Web Consortium"/> + <attribute name="Specification-URL" value="http://www.w3.org/TR/xsl"/> + <attribute name="Implementation-Title" value="${Name}"/> + <attribute name="Implementation-Version" value="${version}"/> + <attribute name="Implementation-Vendor" value="The Apache Software Foundation (http://xmlgraphics.apache.org/fop/)"/> + <attribute name="Implementation-URL" value="http://xmlgraphics.apache.org/fop/"/> + </section> </manifest> </jar> </target> |