Generation problems

"Lewis, Grant" <[email protected]>
Newsgroups gmane.comp.java.xdoclet.user
Message-ID <03642EC064085F4DBB3B40DB5D82F2A205FC157C@SCRA_NT1.SCRA.ORG>
I have no idea why xdoclet will not generate code for my concrete EJBs while it does generate code for the abstract EJB all the concrete EJBs extend. Here is the javadoc header of my abstract EJB:
 
/**
 * @ejb.bean
 * name = "WebServiceEntity"
 * generate = false
 */
abstract public class WebServiceBean
        extends GenericEntityBean implements EntityBean {
 
Here is the header for my PersonBean:
 
/**
 * @ejb.bean
 * name = "Person"
 * type = "BMP"
 * local-jndi-name  = "gov.seahawk.investigations.person.PersonHome"
 * jndi-name = "gov.seahawk.investigations.person.PersonRemoteHome"
 *
 * @ejb.pk
 * class = "java.lang.String"
 */
 
I have a sneaky suspicion this is related to the fact I'm generating code for a BMP bean. When I run xdoclet no code is generated for PersonBean. The abstract EJB has local and remote (business and home) interfaces generated.

My ant task:

<target name="ejbdoclet" depends="prepare">
        <ejbdoclet
                destdir="${build.gen-src.dir}"
                ejbspec="2.0"
                verbose="false">

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

            <remoteinterface/>
            <localinterface/>
            <homeinterface/>
            <localhomeinterface/>

            <deploymentdescriptor
                destdir="${build.meta-inf.dir}"
                validatexml="true">
            </deploymentdescriptor>
        </ejbdoclet>

</target>

Do I have something missing that's required?

Grant
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.