aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2005-05-24 19:45:02 +0000
committerJeremias Maerki <jeremias@apache.org>2005-05-24 19:45:02 +0000
commit5675f8f08a2ee013f8a23a166923251cbf37231b (patch)
tree26d3fd1594e37e7fbb8d347ce7c4e9136b3d527e /build.xml
parent8c1e834bfe85858c25ccd45d1408bf969deda151 (diff)
downloadxmlgraphics-fop-5675f8f08a2ee013f8a23a166923251cbf37231b.tar.gz
xmlgraphics-fop-5675f8f08a2ee013f8a23a166923251cbf37231b.zip
Commented the Class-Path Manifest entry which causes trouble at runtime (ClassNotFoundErrors).
Additional infos echoed during build. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198688 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.xml b/build.xml
index 412b78738..6796d2251 100644
--- a/build.xml
+++ b/build.xml
@@ -55,6 +55,7 @@ list of possible build targets.
<!-- build-local.properties is not stored in CVS and overrides values from build.properties -->
<property file="${basedir}/build-local.properties"/>
<property file="${basedir}/build.properties"/>
+ <property environment="env"/>
<property name="optional.lib.dir" value="${basedir}/lib"/>
@@ -252,6 +253,8 @@ list of possible build targets.
<target name="init-avail">
<echo message="${ant.version}"/>
+ <echo message="VM: ${java.vm.version}, ${java.vm.vendor}"/>
+ <echo message="JAVA_HOME: ${env.JAVA_HOME}"/>
<available property="jimi.present" classname="com.sun.jimi.core.Jimi"
classpathref="libs-build-classpath"/>
@@ -510,7 +513,7 @@ list of possible build targets.
<jar jarfile="${build.dir}/${name}.jar" basedir="${build.dest}" includes="org/**">
<manifest>
<attribute name="Main-Class" value="${main.class}"/>
- <attribute name="Class-Path" value="${manifest-classpath}"/>
+ <!--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://xml.apache.org/fop/)"/>