ilene 2002/12/12 13:06:58
Modified: java Tag: xslt20 build.xml
Log:
Update to build.xml to build prototype DOM L3 XPath API implementation.
Revision Changes Path
No revision
No revision
1.174.2.1.2.1 +9 -3 xml-xalan/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/build.xml,v
retrieving revision 1.174.2.1
retrieving revision 1.174.2.1.2.1
diff -u -r1.174.2.1 -r1.174.2.1.2.1
--- build.xml 14 Aug 2002 18:38:41 -0000 1.174.2.1
+++ build.xml 12 Dec 2002 21:06:58 -0000 1.174.2.1.2.1
@@ -100,6 +100,7 @@
<property name="apachexml.reldir" value="org/apache/xml"/>
<property name="xpath.reldir" value="org/apache/xpath"/>
<property name="xalan.reldir" value="org/apache/xalan"/>
+ <property name="domxpath.reldir" value="org/w3c/dom/xpath"/>
<property name="xsltc.reldir" value="${xalan.reldir}/xsltc"/>
<property name="generated.xpathparser"
value="${src.dir}/${xsltc.reldir}/compiler/XPathParser.java"/>
<property name="generated.xpathlexer"
value="${src.dir}/${xsltc.reldir}/compiler/XPathLexer.java"/>
@@ -287,6 +288,7 @@
<!-- But exclude unused synthetic* files; should be obsoleted from CVS
-->
<exclude name="${apachexml.reldir}/utils/synthetic/**/*.java" />
<include name="${xpath.reldir}/**/*.java" />
+ <include name="${domxpath.reldir}/**/*.java" />
<exclude name="**/CoroutineSAXFilterTest.java"
unless="xerces.present" />
<exclude name="**/CoroutineSAXParser_Xerces.java"
@@ -795,7 +797,11 @@
<!-- Also delete files expanded from ${xml-commons-srcs.tar.gz}-->
<delete dir="${src.dir}/javax" includeEmptyDirs="true" quiet="true"/>
<delete dir="${src.dir}/org/xml" includeEmptyDirs="true" quiet="true"/>
- <delete dir="${src.dir}/org/w3c" includeEmptyDirs="true" quiet="true"/>
+ <delete includeEmptyDirs="true" quiet="true">
+ <fileset dir="${src.dir}/org/w3c">
+ <exclude name="dom/xpath/**"/>
+ </fileset>
+ </delete>
</target>
<target name="xsltc.clean"
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]