Skip to content

Instantly share code, notes, and snippets.

@tf0054
Created September 27, 2012 04:35
Show Gist options
  • Save tf0054/3792181 to your computer and use it in GitHub Desktop.
Save tf0054/3792181 to your computer and use it in GitHub Desktop.
how to check testatoo options
<project>
<!--
<target name="clean">
<delete dir="build"/>
</target>
<target name="compile">
<mkdir dir="build/classes"/>
<javac srcdir="src" destdir="build/classes"/>
</target>
<target name="jar">
<mkdir dir="build/jar"/>
<jar destfile="build/jar/HelloWorld.jar" basedir="build/classes">
<manifest>
<attribute name="Main-Class" value="oata.HelloWorld"/>
</manifest>
</jar>
</target>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
-->
<property name="main" value="org.testatoo.container.ContainerRunner"/>
<property name="m2dir" location="/Users/tf0054/.m2/repository"/>
<target name="run">
<java fork="true" dir="/" classname="${main}">
<arg value="-help"/>
<classpath>
<path location="${m2dir}/org/testatoo/container/testatoo-container-core/1.0-rc1/testatoo-container-core-1.0-rc1.jar"/>
</classpath>
</java>
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment