Commit 81383cec authored by Kevin Bi's avatar Kevin Bi
Browse files

"Multiple changes:

(1) Removed the lib directory from the root of this repo. The jars have been moved to either the gzoltar-scripts dir or the tarantual/lib dir
(2) Added a build.xml file to tarantula folder only has basic commands to initialize and compile the code which is now in a src directory
(3) The run-gzoltar script has been modified so it can run the gzoltar jar file in it's directory
"
parent e35c8033
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
# $2 command line argument corresponds to packages to instrument
# $3 command line argument corresponds class path

java -jar ../../lib/com.gzoltar-0.0.11-jar-with-dependencies.jar $1 $2 $3 

java -jar com.gzoltar-0.0.11-jar-with-dependencies.jar $1 $2 $3 
#java -jar ../../lib/com.gzoltar-0.0.11-jar-with-dependencies.jar $1 $2 $3 

tarantula/build.xml

0 → 100644
+26 −0
Original line number Diff line number Diff line
<project name="tarantula" default="compile" basedir=".">

<!-- Target to clean up -->
    <target name="clean" description="Clean">
        <delete dir="bin"/>
    </target>

<!-- Target to initialize build -->
    <target name="init">
        <mkdir dir="bin"/>
    </target>

<!-- Target to compile the project -->
    <target name="compile" depends="init" description="Compile">
        <javac includeantruntime="true"
               srcdir="src"
               destdir="bin"
               debug="yes"
               fork="no">
            <classpath>
                <pathelement path="/lib/json-simple-1.1.1.jar"/>
                <pathelement path="/lib/junit-4.11.jar"/>
            </classpath>
        </javac>
    </target>
</project>
(282 KiB)

File moved.

Loading