Skip to content

Commit 05f215c

Browse files
committed
Updated build file
Signed-off-by: Shivam Dixit <[email protected]>
1 parent 9d4cc65 commit 05f215c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<property environment="ENV"/>
44

55
<property name="src.dir" value="src"/>
6-
<property name="tests.dir" value="tests"/>
6+
<property name="tests.dir" value="${src.dir}/tests"/>
77
<property name="build.dir" value="build"/>
88
<property name="dependencies.dir" value="deps"/>
99
<property name="tests.report.dir" value="${build.dir}/tests"/>
@@ -18,21 +18,21 @@
1818
<delete dir="${build.dir}"/>
1919
</target>
2020

21-
<target name="build" depends="clean">
21+
<target name="compile">
2222
<mkdir dir="${build.dir}"/>
2323
<mkdir dir="${tests.report.dir}"/>
2424
<javac srcdir="${src.dir}" destdir="${build.dir}" debug="on" includeantruntime="false">
2525
<classpath refid="junit.class.path"/>
2626
</javac>
2727
</target>
2828

29-
<target name="test" depends="build">
29+
<target name="test" depends="compile">
3030
<junit fork="true" haltonfailure="yes">
3131
<classpath refid="junit.class.path"/>
3232
<batchtest todir="${tests.report.dir}">
3333
<formatter type="brief" usefile="false"/>
34-
<fileset dir="${tests.dir}">
35-
<include name="*.java"/>
34+
<fileset dir="${src.dir}">
35+
<include name="**/*Test*.java"/>
3636
</fileset>
3737
</batchtest>
3838
</junit>

0 commit comments

Comments
 (0)