1 Star 0 Fork 25

傲笑红尘 / dwz_springmvc

forked from DWZ团队 / dwz_springmvc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build-server.xml 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
<?xml version="1.0" encoding="UTF-8"?>
<project name="dwzmvc-server" default="init">
<property file="build.properties"/>
<target name="init">
<echo message="build ${ant.project.name} "></echo>
<antcall target="process" />
</target>
<target name="process">
<antcall target="zip_server_upload_all" />
</target>
<target name="zip_server_upload_all" description="zip [*.jsp,*.class...] to zip file.">
<!-- copy web app files -->
<copy todir="${server.upload}/${app.website}">
<fileset dir="../${app.website}/WebContent">
<include name="**/*.*"/>
<exclude name="**/*.jar"/>
<exclude name="**/*.svn"/>
<exclude name="**/*.git"/>
<exclude name="**/app-core.properties"/>
<exclude name="**/jdbc.properties"/>
<exclude name="**/log4j.properties"/>
</fileset>
</copy>
<!-- zip all files -->
<zip destfile="${server.upload}/${app.website}.zip" basedir="${server.upload}/${app.website}"/>
<!-- delete web app base dir -->
<delete dir="${server.upload}/${app.website}" />
</target>
</project>
Java
1
https://gitee.com/casson/dwz_springmvc.git
git@gitee.com:casson/dwz_springmvc.git
casson
dwz_springmvc
dwz_springmvc
master

搜索帮助