<!-- 
  An ant project fragement imported into the main testsuite build that defines the code generation compile targets.
   
  $Id: code-generation.xml 45265 2006-05-26 05:09:23Z asaldhana $
-->
<project name="code-generation" default="help">
  <target name="init-code-generation" depends="compile-resources">
    <mkdir dir="${build.gen-src}"/>
    <mkdir dir="${build.resources}"/>
    <mkdir dir="${build.reports}"/>

    <copy todir="${build.resources}" file="${source.resources}/log4j.xml" />

    <taskdef name="ejbdoclet" classname="xdoclet.modules.ejb.EjbDocletTask" classpathref="xdoclet.task.classpath"/>

  </target>

  <!-- Compile EJB beans with XDoclet -->
  <target name="compile-bean-sources" depends="init-code-generation" unless="noxdoclet">
  </target>
  <target name="compile-mbean-sources" unless="noxdoclet">
  </target>

  <target name="compile-xmbean-dds" unless="noxdoclet">

  </target>

  <target name="compile-proxycompiler-bean-sources" unless="noxdoclet">
  </target>

  <target name="help">
    <echo message="The project fragment which defines the jboss server configs"/>
  </target>

</project>
