Skip to content

Commit

Permalink
Bumped version to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fcoury committed May 15, 2014
1 parent 45533a1 commit c63ea22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<project name="JFileHelpers" basedir="." default="junit">

<property name="version" value="0.2a" />
<property name="version" value="0.3" />
<property name="dist" value="${basedir}/dist" />
<property name="build" value="${basedir}/bin" />
<property name="lib" value="${basedir}/lib" />
Expand Down Expand Up @@ -30,7 +30,7 @@
</target>

<target name="compile" depends="init">
<javac destdir="${build}" classpath="${lib}/commons-lang-2.3.jar">
<javac destdir="${build}" classpath="${lib}/commons-lang-2.3.jar:${lib}/junit-4.4.jar">
<src path="${basedir}/Source/src" />
<src path="${basedir}/Tests/src" />
<src path="${basedir}/Samples/src" />
Expand All @@ -49,7 +49,7 @@
<target name="junit" depends="jars">
<junit printsummary="on" fork="false">
<formatter type="brief" />
<classpath path="${dist}/jfilehelpers-${version}-${TODAY}.jar" />
<classpath path="${dist}/jfilehelpers-${version}-${TODAY}.jar:${lib}/junit-4.4.jar" />
<batchtest>
<fileset dir="${build}">
<include name="org/coury/jfilehelpers/tests/**/*Test.class" />
Expand Down

0 comments on commit c63ea22

Please sign in to comment.