| 1 |
Index: build.xml |
| 2 |
=================================================================== |
| 3 |
RCS file: /sources/public/2002/css-validator/build.xml,v |
| 4 |
retrieving revision 1.23 |
| 5 |
diff -u -r1.23 build.xml |
| 6 |
--- build.xml 1 Nov 2011 07:51:20 -0000 1.23 |
| 7 |
+++ build.xml 22 Feb 2012 23:57:47 -0000 |
| 8 |
@@ -75,10 +75,10 @@ |
| 9 |
<copy file="tmp/htmlparser-1.3.1/htmlparser-1.3.1.jar" tofile="lib/htmlparser-1.3.1.jar"/> |
| 10 |
</target> |
| 11 |
|
| 12 |
- <target name="build" description="Builds the validator" depends="prepare"> |
| 13 |
+ <target name="build" description="Builds the validator"> |
| 14 |
<mkdir dir="./build"/> |
| 15 |
<javac classpathref="build.class.path" destdir="./build" encoding="UTF-8" |
| 16 |
- debug="yes" includes="org/w3c/**" srcdir="." source="1.6" target="1.6"/> |
| 17 |
+ includes="org/w3c/**" srcdir="."/> |
| 18 |
<copy todir="./build"> |
| 19 |
<fileset dir="./"> |
| 20 |
<include name="org/**"/> |
| 21 |
@@ -91,7 +91,7 @@ |
| 22 |
<target name="jigsaw" description="Builds the validator for Jigsaw" depends="prepare"> |
| 23 |
<mkdir dir="./build"/> |
| 24 |
<javac classpathref="build.class.path" destdir="." encoding="UTF-8" |
| 25 |
- debug="yes" source="1.6" target="1.6"> |
| 26 |
+ > |
| 27 |
<src path="./org/w3c"/> |
| 28 |
</javac> |
| 29 |
</target> |
| 30 |
@@ -99,6 +99,7 @@ |
| 31 |
<target name="javadoc" description="Generates API docs"> |
| 32 |
<mkdir dir="./javadoc"/> |
| 33 |
<javadoc |
| 34 |
+ classpathref="build.class.path" |
| 35 |
packagenames="org.w3c.*" |
| 36 |
sourcepath="./" |
| 37 |
destdir="./javadoc" |