On Wed, 10 Jul 2002 20:32, Andrei Ivanov wrote:
> Anyone knowing how to tell PhoenixXDoclet to include to manifest
> information only about certain blocks?
Basically you can use ants include/exclude system when definiing fileset.
ie The following will only include block in MySpecialBlock.java file.
<phoenix-blocks
destdir="${gen.dir}"
classpathref="project.class.path">
<fileset dir="${java.dir}">
<include name="**/MySpecialBlock.java" />
</fileset>
<manifest manifestFile="manifest.mf" />
</phoenix-blocks>
Alternatively you could include all java files except MySpecialBlock via
something like.
<fileset dir="${java.dir}">
<include name="**/*.java" />
<exclude name="**/MySpecialBlock.java" />
</fileset>
--
Cheers,
Peter Donald
--------------------------------------------
Beer is proof that God loves us and wants
us to be happy. -- Benjamin Franklin
--------------------------------------------
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>