Hi all,

I'm plunging into the world of xdoclet... Following the advice from the
FAQ, I've gotten to the point of having a simple jarfile. However, I seem
to be missing some of the generated XML files. Such as: jaws.xml,
jbosscmp-jdbc.xml and jboss.xml.
My ejb:ejbdoclet goal is:

  <goal name="ejb:ejbdoclet"
        description="Invokes xdoclet">

    <mkdir dir="${maven.build.dir}/xdoclet/ejb/META-INF"/>

    <ejbdoclet sourcepath="${maven.prepareSourceDirectory}"
               destdir="${maven.build.dir}/xdoclet/java"
               excludedtags="@version,@author"
               ejbspec="2.0"
               >

      <packageSubstitution packages="ejb" substituteWith="interfaces"/>

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

      <dataobject/>
      <session/>
      <entitypk/>
      <entitycmp/>
      <localhomeinterface />
      <localinterface/>
      <homeinterface />
      <remoteinterface/>

      <deploymentdescriptor
      destDir="${maven.build.dir}/xdoclet/ejb/META-INF"/>
      <jboss version="3.0"
             debug="true"
             xmlencoding="UTF-8"
             destDir="${maven.build.dir}/xdoclet/ejb/META-INF"
             validateXML="false"
             datasource="java:/OracleDS"
             typemapping="Oracle8"
             />
    </ejbdoclet>
  </goal>


Pretty straight-forward. What am I doing wrong?

Thanks,
J




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to