[pkg-java] r2696 - branches/dom4j/feature/debian
Marcus Better
marcusb-guest at alioth.debian.org
Wed Nov 1 10:45:33 CET 2006
Author: marcusb-guest
Date: 2006-11-01 10:45:33 +0100 (Wed, 01 Nov 2006)
New Revision: 2696
Modified:
branches/dom4j/feature/debian/build.xml
Log:
Make test cases run. Fix bad syntax in <exclude> tags. Fix JavaDoc links.
Modified: branches/dom4j/feature/debian/build.xml
===================================================================
--- branches/dom4j/feature/debian/build.xml 2006-10-31 11:54:43 UTC (rev 2695)
+++ branches/dom4j/feature/debian/build.xml 2006-11-01 09:45:33 UTC (rev 2696)
@@ -19,6 +19,7 @@
<fileset dir="/usr/share/java">
<include name="backport-util-concurrent.jar" />
<include name="jaxen.jar" />
+ <include name="junitperf.jar" />
<include name="xalan2.jar" />
<include name="xercesImpl.jar" />
<include name="xpp3.jar" />
@@ -223,8 +224,7 @@
doctitle="${Name}"
bottom="Copyright © ${year} MetaStuff Ltd. All Rights Reserved. Hosted by <p> <img src='http://sourceforge.net/sflogo.php?group_id=16035' width='88' height='31' border='0' alt='SourceForge Logo' />"
stylesheetfile="${doc.dir}/style/javadoc.css">
- <link href="http://java.sun.com/j2se/1.4.2/docs/api"/>
- <link href="http://java.sun.com/xml/jaxp-docs-1.1/docs/api"/>
+ <link href="file:///usr/share/doc/classpath-doc/api"/>
</javadoc>
<mkdir dir="${build.apidocs}"/>
@@ -240,8 +240,7 @@
doctitle="${Name}"
bottom="Copyright © ${year} MetaStuff Ltd. All Rights Reserved. Hosted by <p> <img src='http://sourceforge.net/sflogo.php?group_id=16035' width='88' height='31' border='0' alt='SourceForge Logo' />"
stylesheetfile="${doc.dir}/style/javadoc.css">
- <link href="http://java.sun.com/j2se/1.4.2/docs/api"/>
- <link href="http://java.sun.com/xml/jaxp-docs-1.1/docs/api"/>
+ <link href="file:///usr/share/doc/classpath-doc/api"/>
<link href="${build.javadocs}"/>
</javadoc>
</target>
@@ -282,10 +281,17 @@
<path refid="test.classpath" />
</classpath>
+ <sysproperty key="org.xml.sax.driver"
+ value="org.apache.xerces.parsers.SAXParser"/>
+
<batchtest fork="yes" todir="${build.dir}/test-results/xml">
<fileset dir="${test.dir}">
<include name="**/*Test.java" />
- <exclude name="**/AllTests.java,**/Abstract*.java,**/TestCase.java,**/StaxTest.java,**/datatype/*Test.java" />
+ <exclude name="**/AllTests.java" />
+ <exclude name="**/Abstract*.java" />
+ <exclude name="**/TestCase.java" />
+ <exclude name="**/StaxTest.java" />
+ <exclude name="**/datatype/*Test.java" />
</fileset>
</batchtest>
</junit>
More information about the pkg-java-commits
mailing list