Created
September 27, 2012 04:35
-
-
Save tf0054/3792181 to your computer and use it in GitHub Desktop.
how to check testatoo options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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