4ab4e5876b
* LightOptionParser will only make one pass through the arguments array. * Make LOP support multiple instances of an option (-i in1 -i in2) * Make LOP support indeterminate option argument lengths (using arguments: "variable" in the definition). * Add unit tests for LightOptionParser and a testing phase during the `package` build target.
13 lines
373 B
XML
13 lines
373 B
XML
<project name="JDB Common Utilities" default="package">
|
|
|
|
<property file="project.properties"/>
|
|
|
|
<import file="jdb-build-1.10.xml"/>
|
|
|
|
<target name="package" depends="run-tests,-build-modular">
|
|
<copy
|
|
file="${build.dir}/${name}-${version}.${build.number}.jar"
|
|
tofile="${build.dir}/${name}-${version}.jar"/>
|
|
</target>
|
|
</project>
|