1 Star 0 Fork 8

huawei/dinp-dash

forked from Ulric Qin/dinp-dash 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.xml 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
Ulric Qin 提交于 2015-02-08 23:14 . init github version
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="build" name="dash">
<property name="debug" value="true"/>
<property name="target" value="1.7"/>
<property name="source" value="1.7"/>
<property name="encoding" value="UTF-8"/>
<property name="build.classes.dir" value="web/WEB-INF/classes"/>
<path id="dash.classpath">
<pathelement location="${build.classes.dir}"/>
<fileset dir="lib" includes="*.jar" />
<fileset dir="web/WEB-INF/lib" includes="*.jar" />
</path>
<target name="init" depends="clean">
<mkdir dir="${build.classes.dir}"/>
<copy includeemptydirs="false" todir="${build.classes.dir}">
<fileset dir="src" excludes="**/*.java"/>
<fileset dir="frame" excludes="**/*.java"/>
<fileset dir="conf" excludes="**/*.java"/>
</copy>
</target>
<target name="build" depends="init">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac includeantruntime="false" debug="${debug}" encoding="${encoding}" destdir="${build.classes.dir}" source="${source}" target="${target}">
<src path="conf"/>
<src path="src"/>
<src path="frame"/>
<classpath refid="dash.classpath"/>
</javac>
</target>
<target name="clean">
<delete dir="${build.classes.dir}"/>
</target>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/weizai118/dinp-dash.git
git@gitee.com:weizai118/dinp-dash.git
weizai118
dinp-dash
dinp-dash
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385