i am working on
j2ee migration project from weblogic to
jboss.
while creating hte ejb jars with
ant scripts, the following tags are used :
<weblogic destdir="${beans}" newCMP="true" />
<dtd publicId="-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN" location="../dtd/weblogic-ejb-jar.dtd"/>
correspondingly I am using the following tags to include jboss descriptors:
<jboss destdir="${beans}" />
<dtd publicId="-//JBoss//DTD JBOSS 4.0//EN" location="../dtd/jboss_4_0.dtd"/>
but the problem is while creating ejb jars it is not including cmp descriptors.
so my doubt is whether is there any other tag to include the cmp descriptors.