Skip to content

Commit

Permalink
Fixed ant build file to use junit.jar
Browse files Browse the repository at this point in the history
  • Loading branch information
krisives committed Jul 6, 2016
1 parent 4ccf125 commit 88ec612
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.8"/>
<property name="source" value="1.8"/>
<path id="JUnit 3.libraryclasspath">
<pathelement location="../../../../eclipse/plugins/org.junit_4.12.0.v201504281640/junit.jar"/>
</path>
<path id="jbloomer.classpath">
<pathelement location="bin"/>
<path refid="JUnit 3.libraryclasspath"/>
<pathelement location="lib/junit-4.12.jar"/>
<pathelement location="lib/hamcrest-core-1.3.jar"/>
</path>
<path id="run.test.classpath">
<path refid="jbloomer.classpath"/>
<pathelement location="lib/junit-4.12.jar"/>
<pathelement location="lib/hamcrest-core-1.3.jar"/>
</path>
<target name="init">
<mkdir dir="bin"/>
Expand Down Expand Up @@ -58,7 +61,7 @@
<formatter type="xml"/>
<test name="jbloomer.test.BloomFilterTest" todir="${junit.output.dir}"/>
<jvmarg line="-ea"/>
<classpath refid="jbloomer.classpath"/>
<classpath refid="run.test.classpath"/>
</junit>
</target>
<target name="junitreport">
Expand Down

0 comments on commit 88ec612

Please sign in to comment.