整理一个ANT在J2EE项目中的应用,含预编译JSP和打包WAR/EAR文件![10]

[入库:2006年2月23日] [更新:2007年3月24日]

本文简介:

<target name="make.ear_module" depends="compile, make.web_module, make.ejb_module">
<ear destfile="${dir.project.build}/${deploy.file.ear_module}" appxml="${dir.project.ear_module}/META-INF/application.xml">
<fileset dir="${dir.project.build}">
<include name="${deploy.file.web_module}"/>
<include name="${deploy.file.ejb_module}"/>
</fileset>
</ear>
</target>

<target name="make" depends="init, compile, make.web_module, make.ejb_module, make.ear_module" />

<target name="build" depends="clean, init, make" />

本文关键:整理一个ANT在J2EE项目中的应用,含预编译JSP和打包WAR/EAR文件!
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top