And having something like :
<path id="base.src" >
<fileset dir="base"
casesensitive="yes"
defaultexcludes="yes">
<include name="com/customer/**" />
<exclude name="com/customer/**/*Test*.java" />
</fileset>
</path>
<path id="all.java.files">
<path refid="base.src" />
</path>
<target name="generate">
<javadoc destdir="${javadoc.dir}"
author="true"
version="true"
maxmemory="512m"
use="true"
windowtitle="Test API"
source="1.4">
<sourcepath refid="all.java.files" />
<classpath refid="build.path" />
</javadoc>
</target>
gives :
BUILD FAILED
...\src\build-javadocs.xml:155: No source files and no packages have been
specified
Am I missing something or is there something broken ... ?
\T,
--- [EMAIL PROTECTED] wrote:
> Usually you use <path>s for them ...
>
> Jan
>
> > -----Urspr�ngliche Nachricht-----
> > Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Gesendet am: Montag, 25. April 2005 15:15
> > An: [email protected]
> > Betreff: How to combine multiple file sets ?
> >
> >
> >
> > I thought I could have had something like this :
> >
> > <fileset id="base.src" dir="base" casesensitive="yes"
> > defaultexcludes="yes">
> > <include name="com/customer/base/**"/>
> > <exclude name="com/customer/base/**/*Test*.java"/>
> > </fileset>
> >
> > <fileset id="services.src" dir="services"
> > casesensitive="yes" defaultexcludes="yes">
> > <include name="com/customer/services/**"/>
> > <exclude name="com/customer/services/**/*Test*.java"/>
> > </fileset>
> >
> > <fileset id="all.src">
> > <fileset refid="base.src" />
> > <fileset refid="services.src" />
> > </fileset>
> >
> > Any idea on how to combine them ...?
> >
> > \T,
> >
> >
> > Any fool can write code that a computer can understand.
> > Good programmers write code that humans can understand.
> > Martin Fowler
> > T. : +32 (0)2 742 05 94
> > M. : +32 (0)497 44 68 12
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
Any fool can write code that a computer can understand.
Good programmers write code that humans can understand.
Martin Fowler
T. : +32 (0)2 742 05 94
M. : +32 (0)497 44 68 12
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]