I get the following error:
The <ejbdoclet> task doesn't support the nested "packagesubstitution" element.
with the following defnition:
<target depends="init" name="xdoclet-generate">
<taskdef
classname="xdoclet.ejb.EjbDocletTask"
name="ejbdoclet">
<classpath refid="xdoclet.path"/>
</taskdef>

<ejbdoclet
classpathref="base.path"
destdir="${build.generate.dir}"
ejbspec="${ejb.version}"
excludedtags="@version,@author"
mergedir="${src.resources.dir}/xdoclet"
force="${xdoclet.force}"
sourcepath="${src.ejb.dir}">
<fileset dir="${src.ejb.dir}">
<include name="**/*Bean.java"/>
</fileset>
<packageSubstitution packages="session,entity" substituteWith="interfaces"/>
<dataobject/>
<remoteinterface/>
<homeinterface/>
<entitypk/>
<entitybmp/>
<entitycmp/>
<deploymentdescriptor destdir="${build.dir}/META-INF"/>
<!-- AS 4/29/02 Do not validate XML files because JBoss 3.0 message driven will
report an wrong error because it uses the wrong jboss.dtd -->
<jboss
datasource="${datasource.name}"
destdir="${build.dir}/META-INF"
typemapping="${type.mapping}"
validateXml="false"
version="${jboss.version}"
xmlencoding="UTF-8"/>
</ejbdoclet>
</target>

Just to try to forge ahead, I commented it out and tried again, resulting in the following error:
The <ejbdoclet> task doesn't support the "force" attribute.
Commenting 'force' , not unexpectedly resulted in the compile task not being able to find the 'interfaces' target.

I've just installed xdoclet today, and also loaded-up ant 1.5.1. The build script is from a jboss 3.0.0 download.
thanks is advance for for any pointers.
Marty La Jeunesse




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to