- From: Jean-Guilhem Rouel via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 20 Jan 2009 14:36:25 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator
In directory hutz:/tmp/cvs-serv7654
Modified Files:
build.xml
Log Message:
changed target to 1.5
Index: build.xml
===================================================================
RCS file: /sources/public/2002/css-validator/build.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- build.xml 20 Jan 2009 13:58:52 -0000 1.11
+++ build.xml 20 Jan 2009 14:36:23 -0000 1.12
@@ -77,7 +77,7 @@
<target name="build" description="Builds the validator" depends="prepare">
<mkdir dir="./build"/>
<javac classpathref="build.class.path" destdir="./build" encoding="UTF-8"
- debug="yes" includes="org/w3c/**" srcdir="."/>
+ debug="yes" includes="org/w3c/**" srcdir="." source="1.5" target="1.5"/>
<copy todir="./build">
<fileset dir="./">
<include name="org/**"/>
@@ -89,11 +89,8 @@
<target name="jigsaw" description="Builds the validator for Jigsaw">
<mkdir dir="./build"/>
- <javac
- classpathref="build.class.path"
- destdir="."
- encoding="UTF-8"
- debug="yes">
+ <javac classpathref="build.class.path" destdir="." encoding="UTF-8"
+ debug="yes" source="1.5" target="1.5">
<src path="./org/w3c"/>
</javac>
</target>
Received on Tuesday, 20 January 2009 14:36:35 UTC