Update of /cvsroot/junit/junit
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv10549
Modified Files:
build.xml
Log Message:
With ant-1.7, this directory contains files for testing build.xml, which is useful for forward migration
Index: build.xml
===================================================================
RCS file: /cvsroot/junit/junit/build.xml,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- build.xml 30 Nov 2006 15:07:16 -0000 1.20
+++ build.xml 21 Feb 2007 18:25:21 -0000 1.21
@@ -9,6 +9,7 @@
<property name="testfiles" value="junit/samples/**, junit/tests/**" />
<property name="unjarred" value="**/*.jar, ${testfiles}, doc/**, README.html, .classpath, .project, cpl-v10.html" />
<property name="jarfile" value="junit-${version}.jar" />
+ <property name="javadocdir" value="${dist}/javadoc" />
<target name="init">
<tstamp/>
@@ -62,11 +63,11 @@
<param name="dir" value="org" />
</antcall>
- <mkdir dir="${dist}/javadoc" />
+ <mkdir dir="${javadocdir}" />
<javadoc
sourcepath="${src}"
packagenames="org.junit, org.junit.runner, org.junit.runner.description, org.junit.runner.manipulation, org.junit.runner.notification, org.junit.runners"
- destdir="${dist}/javadoc"
+ destdir="${javadocdir}"
author="false"
version="false"
use="false"
|