Hi,

> Can you
> post the relevant bits of your build script, and the
> VO-related tags
> from one of your CMP beans?

from build.xml :
    <ejbdoclet
      destdir="${gen.src}"
      excludedtags="@author,@see,@param,@return"
      ejbspec="2.0"
      >
      <fileset dir="${src}">
        <include name="**/*.java"/>
        <exclude name="${gen.src}/**/*.java"/>
        <exclude name="${gen.build}/**/*.java"/>
      </fileset>

      <localinterface/>
      <localhomeinterface/>
      <remoteinterface/>
      <homeinterface/>
      <entitypk/>
      <entitycmp/>
      <valueobject>
        <packagesubstitution packages="cmp"
substituteWith="valueobjects"/>
      </valueobject>
      <session/>
      <deploymentdescriptor
        destdir="${gen.build}/META-INF"
        validatexml="true"
        />
      <jboss
        version="3.0"
        unauthenticatedPrincipal="nobody"
        xmlencoding="UTF-8"
        destdir="${gen.build}/META-INF"
        typemapping="mySQL"
        datasource="java:/BaseTestDS"
        />
    </ejbdoclet>

from a bean :
- Class level definition
...
 *
 * @ejb.value-object name="Tache" match="*"
 */
- As the value object maches all (*), there are no
method level @ejb.value-object tags


When commenting the <packagesubstitution> tag in the
<valueobject> task, it works well !


thanks for your help,
ionel

___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran�ais !
Yahoo! Mail : http://fr.mail.yahoo.com


-------------------------------------------------------
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