zongaro 2003/04/08 18:20:13
Modified: java build.xml
Log:
Dropped descriptions of entities in the form of resource files in favour of
those in the form of properties file. The resource files are still supported,
but Xalan-J's serializer only requires one.
Revision Changes Path
1.189 +4 -4 xml-xalan/java/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-xalan/java/build.xml,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -r1.188 -r1.189
--- build.xml 3 Apr 2003 20:23:50 -0000 1.188
+++ build.xml 9 Apr 2003 01:20:13 -0000 1.189
@@ -247,7 +247,7 @@
</javac>
<!-- Copy needed properties, resource, etc. files to be put into .jar
file -->
<copy todir="${build.classes}">
- <fileset dir="${src.dir}"
includes="${apachexml.reldir}/**/*.properties,${apachexml.reldir}/**/*.res"/>
+ <fileset dir="${src.dir}"
includes="${apachexml.reldir}/**/*.properties"/>
</copy>
</target>
@@ -271,7 +271,7 @@
</javac>
<!-- Copy needed properties, resource, etc. files to be put into .jar
file -->
<copy todir="${build.classes}">
- <fileset dir="${src.dir}"
includes="**/*.properties,**/*.res,META-INF/services/*"
excludes="**/XSLTInfo.properties"/>
+ <fileset dir="${src.dir}"
includes="**/*.properties,META-INF/services/*"
excludes="**/XSLTInfo.properties"/>
</copy>
<filter token="impl.version" value="${impl.version}"/>
<copy todir="${build.classes}/org/apache/xalan/res"
file="${XSLTInfo.props}" filtering="true"/>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]