37 Star 0 Fork 2

PerfBenchmark / benchmarksql

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
build.xml 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
Yu Shuaipeng 提交于 2018-11-28 16:25 . force UTF-8
<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" encoding="UTF-8">
<compilerarg value="-Xlint:all"/>
</javac>
</target>
<target name="dist" depends="compile" >
<mkdir dir="${dist}"/>
<jar jarfile="${dist}/BenchmarkSQL-5.0.jar" basedir="${build}"/>
</target>
<target name="clean" description="clean up" >
<delete dir="${build}"/>
<delete dir="${dist}"/>
<delete dir="${logs}"/>
</target>
</project>
Java
1
https://gitee.com/perfbenchmark/benchmarksql.git
git@gitee.com:perfbenchmark/benchmarksql.git
perfbenchmark
benchmarksql
benchmarksql
5.0-mysql-support-opt-2.1

搜索帮助