leosimons 2002/07/26 03:44:26
Modified: . build.xml
Log:
fix stupid ZipExceptions that occur during doc generation. Java was simply
complaining about the .LICENSE files that were being included. Filtering for
*.jar solves the problem. Duh!
Revision Changes Path
1.139 +3 -1 jakarta-avalon/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-avalon/build.xml,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- build.xml 19 Jul 2002 16:48:48 -0000 1.138
+++ build.xml 26 Jul 2002 10:44:25 -0000 1.139
@@ -401,7 +401,9 @@
<arg value="index.html"/>
<classpath>
<path refid="tools.class.path"/>
- <fileset dir="${tools.dir}/ext"/>
+ <fileset dir="${tools.dir}/ext">
+ <include name="*.jar"/>
+ </fileset>
</classpath>
</java>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>