- From: CVS User ylafon <cvsmail@w3.org>
- Date: Tue, 07 Oct 2014 10:26:38 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator
In directory roscoe:/tmp/cvs-serv16278
Modified Files:
build.xml
Log Message:
we are using 1.7 things like <> operators, so let's adapt the ant file
--- /sources/public/2002/css-validator/build.xml 2014/01/13 10:01:30 1.24
+++ /sources/public/2002/css-validator/build.xml 2014/10/07 10:26:38 1.25
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Id: build.xml,v 1.24 2014/01/13 10:01:30 ylafon Exp $ -->
+<!-- $Id: build.xml,v 1.25 2014/10/07 10:26:38 ylafon Exp $ -->
<project default="jar" name="W3C CSS Validator">
<!-- =================================================================== -->
@@ -82,7 +82,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="." source="1.6" target="1.6"/>
+ debug="yes" includes="org/w3c/**" srcdir="." source="1.7" target="1.7"/>
<copy todir="./build">
<fileset dir="./">
<include name="org/**"/>
@@ -95,7 +95,7 @@
<target name="jigsaw" description="Builds the validator for Jigsaw" depends="prepare">
<mkdir dir="./build"/>
<javac classpathref="build.class.path" destdir="." encoding="UTF-8"
- debug="yes" source="1.6" target="1.6">
+ debug="yes" source="1.7" target="1.7">
<src path="./org/w3c"/>
</javac>
</target>
Received on Tuesday, 7 October 2014 10:26:39 UTC