On Tue, 26 Feb 2002, <[EMAIL PROTECTED]> wrote:
> The goal is this. Define set of files ONCE. Javadoc and Jar from
> this one set of files.
This is currently impossible as javadoc doesn't support filesets at
all.
> More in depth:
> --------------
> *_Stub.java are under classes
>
> rest of *.java are under src
>
> *.class are under classes
<jar ...>
<fileset dir="classes">
<exclude name="**/*.java" />
</fileset>
</jar>
I don't think you need a reference to src here at all (or do you want
to include the sources inside the jar?).
<javadoc ...>
<sourcepath location="src" />
<sourcepath location="classes" />
</javadoc>
as javadoc will ignore all non .java files.
Stefan
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>