Currently, xdoclet fails on the first parsing error that it encounters. Is 
there a way to have it continue and show multiple errors? It takes forever to 
go through them one at a time. My ant target follows.

-- Ian



    <target name="xdoclet-workflow" depends="prepare">
        <taskdef name="ejbdoclet"
                 classname="xdoclet.modules.ejb.EjbDocletTask"
                 classpathref="xdoclet.class.path"
                 />
        <ejbdoclet
                   destdir="${build.src.dir}"
                   addedtags="@xdoclet-generated at ${TODAY},@copyright The 
XDoclet Team,@author XDoclet,@version ${version}"
                   excludedtags="@version,@author,@todo"
                   ejbspec="2.0"
                   force="${xdoclet.force}"
                   verbose="true"
                   >
            
            <fileset dir="${src.dir}">
                <include name="${src.dir}/**/*Bean.java" />
                <include name="${src.dir}/**/*MDB.java" />
            </fileset>
            
            <!-- put interfaces in separate package -->
            <packageSubstitution packages="entity,worklist" 
substituteWith="interfaces" />
            
            <homeinterface />
            <remoteinterface />
            <localinterface />
            <localhomeinterface />

            <entitybmp />

            <dao />

            <session />
                        
            <utilobject cacheHomes="true" />
            <deploymentdescriptor destdir="${build.src.dir}" 
validatexml="true" />
            <jboss destdir="${build.src.dir}" />
            
        </ejbdoclet>            
    </target>





~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Ian Duggan      [EMAIL PROTECTED]        http://www.demandtec.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

DemandTec, Inc.
1 Circle Star Way Suite 200 
San Carlos, CA 94070 




-------------------------------------------------------
This sf.net email is sponsored by: See the NEW Palm
Tungsten T handheld. Power & Color in a compact size!
http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en
_______________________________________________
Xdoclet-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-user

Reply via email to