Java Reference
In-Depth Information
<include name="application.xml" />
</fileset>
</copy>
<jar destfile="${build.dir}/ejb3.ear">
<metainf dir="${build.dir}/META-INF">
<include name="application.xml" />
</metainf>
<fileset dir="${build.dir}" includes="*.jar,*.war" />
</jar>
</target>
<target name="deploy" " depends="assemble-app">
<copy file="${build.dir}/ejb3.ear" todir="${deploy.dir}" />
</target>
<target name="clean">
<delete file="${build.dir}/ejb3.ear" />
<delete file="${build.dir}/ejb3.jar" />
<delete file="${build.dir}/weblogic.war" />
</target>
</project>
The directory structure of the EJB 3.0 application, including the build.xml file,
is shown below:
 
Search WWH ::




Custom Search