加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.xml 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
MapLover 提交于 2023-12-06 16:41 . @适配mysql
<project name="benchmarksql" default="dist" basedir=".">
<description>BenchmarkSQL Build File</description>
<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<property name="logs" location="run/logs"/>
<property name="lib.dir" value="lib"/>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init">
<javac srcdir="${src}" destdir="${build}" classpathref="classpath"
debug="true" includeantruntime="false">
<compilerarg value="-Xlint:all"/>
</javac>
</target>
<target name="dist" depends="compile" >
<mkdir dir="${dist}"/>
<jar jarfile="${dist}/BenchmarkSQL-5.1.jar" basedir="${build}"/>
</target>
<target name="clean" description="clean up" >
<delete dir="${build}"/>
<delete dir="${dist}"/>
<delete dir="${logs}"/>
</target>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化