ehatcher 02/02/27 19:43:47
Modified: proposal/xdocs build.xml
Log:
made it easier to short-circuit and only run one class, no need to prefix
package info
Revision Changes Path
1.4 +12 -3 jakarta-ant/proposal/xdocs/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/proposal/xdocs/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.xml 27 Feb 2002 20:37:03 -0000 1.3
+++ build.xml 28 Feb 2002 03:43:47 -0000 1.4
@@ -55,17 +55,26 @@
classpathref="xdoclet.classpath">
<fileset dir="${src.dir}">
<include name="**/*.java" unless="class.name"/>
- <include name="${class.name}.java" if="class.name"/>
+ <include name="**/${class.name}.java" if="class.name"/>
</fileset>
<template subTaskClassName="org.apache.tools.ant.xdoclet.AntSubTask"
templateFile="${defaults.properties.template}"
destinationfile="defaults.properties"/>
-<!-- <template templateFile="${xdoc.template}"
- destinationfile="{0}.xml" extent="concrete-type"/> -->
<template subTaskClassName="org.apache.tools.ant.xdoclet.AntSubTask"
templateFile="${xdoc.template}"
destinationfile="{0}.xml" extent="concrete-type"/>
</document>
+
+ <!-- currently not working - bug in XDoclet?
+ <document sourcepath="src"
+ destdir="${gen.dir}"
+ classpathref="xdoclet.classpath">
+ <fileset dir="src">
+ <include name="**/*.java"/>
+ </fileset>
+ <documenttags/>
+ </document> -->
+
</target>
</project>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>