20 lines
555 B
XML
Raw Normal View History

<project name="Time Analyzer" default="compile">
<property file="project.properties"/>
<import file="jdb-build-1.9.xml"/>
<target name="init"/>
<target name="build-shell" depends="build">
<mkdir dir="${build.dir}/shell"/>
<copy todir="${build.dir}/shell">
<fileset dir="${build.dir}/lib/runtime/jar">
<include name="*.jar"/>
<exclude name="groovy-*.jar"/>
</fileset>
<fileset dir="${build.dir}/main/classes"/>
</copy>
</target>
</project>