1 Star 2 Fork 1

jackeer/ADB_UI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.xml 2.75 KB
一键复制 编辑 原始数据 按行查看 历史
jackeer@hotmail.com 提交于 2017-11-14 23:09 . 初次提交
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- WARNING: Eclipse auto-generated file. Any modifications will be overwritten.
To include a user specific buildfile here, simply create one in the same
directory with the processing instruction <?eclipse.ant.import?> as the first
entry and export the buildfile again. -->
<project basedir="." default="build" name="ADB_UI">
<property environment="env" />
<property name="ECLIPSE_HOME" value="E:/SW_TOOLS/eclipse-jee-indigo-SR2" />
<property name="debuglevel" value="source,lines,vars" />
<property name="target" value="1.7" />
<property name="source" value="1.7" />
<path id="ADB_UI.classpath">
<pathelement location="bin" />
<pathelement location="libs/org.eclipse.core.commands_3.6.0.I20110111-0800.jar" />
<pathelement location="libs/org.eclipse.equinox.common_3.6.0.v20110523.jar" />
<pathelement location="libs/org.eclipse.jface_3.7.0.v20110928-1505.jar" />
<pathelement location="libs/swt.jar" />
</path>
<target name="init">
<mkdir dir="bin" />
<copy includeemptydirs="false" todir="bin">
<fileset dir="src">
<exclude name="**/*.launch" />
<exclude name="**/*.java" />
</fileset>
</copy>
</target>
<target name="clean">
<delete dir="bin" />
</target>
<target depends="clean" name="cleanall" />
<target depends="build-subprojects,build-project" name="build" />
<target name="build-subprojects" />
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}" />
<javac debug="true" debuglevel="${debuglevel}" destdir="bin"
source="${source}" target="${target}">
<src path="src" />
<classpath refid="ADB_UI.classpath" />
</javac>
</target>
<target
description="Build all projects which reference this project. Useful to propagate changes."
name="build-refprojects" />
<target description="copy Eclipse compiler jars to ant lib directory"
name="init-eclipse-compiler">
<copy todir="${ant.library.dir}">
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar" />
</copy>
<unzip dest="${ant.library.dir}">
<patternset includes="jdtCompilerAdapter.jar" />
<fileset dir="${ECLIPSE_HOME}/plugins" includes="org.eclipse.jdt.core_*.jar" />
</unzip>
</target>
<target description="compile project with Eclipse compiler"
name="build-eclipse-compiler">
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter" />
<antcall target="build" />
</target>
<target name="ADB_Main">
<java classname="com.sam.adbtool.ADB_Main" failonerror="true"
fork="yes">
<classpath refid="ADB_UI.classpath" />
</java>
</target>
<property name="projectHome" location="." />
<target name="createjar">
<jar destfile="${projectHome}/file.jar" basedir="${projectHome}/bin" />
</target>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/jackeer/ADB_UI.git
git@gitee.com:jackeer/ADB_UI.git
jackeer
ADB_UI
ADB_UI
master

搜索帮助