On Mon, 2003-06-23 at 11:03, Patel, Rakesh wrote:
>     <property name="dir.tmp" value="${dev.home}/tmp"/>
>     <property name="dir.gen" value="${dev.home}/generated"/>
...
>     <!-- Creates the output directories -->
>     <target name="prepare">
>         <mkdir dir="${dir.tmp}"/>
>         <mkdir dir="${dir.gen}"/>
>     </target>
...
>       <target name="ejbdoclet" depends="prepare">
>       
>               <pathconvert targetos="windows" property="windowsPath"
> refid="project.class.path"/>
>         <!-- now echo the path to the console -->
>         <echo>Windows path = ${windowsPath}</echo>
>         
>     <taskdef
>         name="ejbdoclet"
>         classname="xdoclet.modules.ejb.EjbDocletTask"
>         classpathref="project.class.path"/>
> 
>     <tstamp>
>         <format property="TODAY" pattern="d-MM-yy"/>
>     </tstamp>
> 
>     <ejbdoclet
>         destdir="${dir.gen}"
>         excludedtags="@version,@author"
>         addedtags="@xdoclet-generated at ${TODAY}"
>         ejbspec="2.0" force="true" verbose="true">
>         
>         <fileset dir="${dir.tmp}">
>             <include name="*Bean.java"/>
>         </fileset>

I don't see anything in the build file you included that copies the bean
files from your source directory into ${dir.tmp} prior to the ejbdoclet
task; the ejbdoclet then processes anything in (but not below, as David
pointed out already) that directory, and unsurprisingly doesn't find
anything to process...


Andrew.



-------------------------------------------------------
This SF.Net email is sponsored by: INetU
Attention Web Developers & Consultants: Become An INetU Hosting Partner.
Refer Dedicated Servers. We Manage Them. You Get 10% Monthly Commission!
INetU Dedicated Managed Hosting http://www.inetu.net/partner/index.php
_______________________________________________
xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to