-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.xml
33 lines (25 loc) · 1.01 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<project default="compile">
<target name="compile">
<javac srcdir="src" debug="true"/>
</target>
<target name="run" depends="compile">
<java classname="com.gui.mainGUI" fork="true">
<classpath>
<path location="src" />
</classpath>
</java>
</target>
<target name="test">
<junit printsummary="yes" fork="yes" haltonfailure="yes">
<classpath location="/Applications/IntelliJ IDEA CE.app/Contents/lib/junit-4.12.jar" />
<classpath location="/Applications/IntelliJ IDEA CE.app/Contents/lib/hamcrest-core-1.3.jar" />
<formatter type="plain"/>
<formatter type="xml" />
<batchtest fork="yes" todir="/Users/yehray/IdeaProjects/yugioh/test">
<fileset dir="/Users/yehray/IdeaProjects/yugioh/test">
<include name="/Users/yehray/IdeaProjects/yugioh/test/com/Tests.java" />
</fileset>
</batchtest>
</junit>
</target>
</project>