On Tue, 2004-06-01 at 08:14, Pawanraj Sadhwani wrote:
> Hi,
> 
> I wrote a simple template that i am trying to process via doclet task. The
> template is not getting processed at all. what could be the reason? I am
> attaching the XDT, ant build script.
> 
> Please Help me out... I am totally confused.

Dodgy fileset, I believe.  You used

      <fileset dir="${basedir}">
        <include name="*Bean.java"/>
      </fileset>

in your build.xml, which will only include classes in ${basedir}
itself.  See the Ant docs for more details on filesets.  Now, your class
had

package com.elitecore.billing.ejb.facades.session;

so it ought to be in
${basedir}/com/elitecore/billing/ejb/facades/session/CustomerSessionBean.java and the 
fileset should use

        <include name="**/*Bean.java"/>

to make it include all subdirectories as well.


Andrew.



-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to