-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
37 lines (33 loc) · 1.47 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
34
35
36
37
<!--<project name="Electronic Asset Trading Platform">-->
<!-- <property name="build.dir" location="target/classes" />-->
<!-- <path id="junit.class.path">-->
<!-- <pathelement location="lib/apiguardian-api-1.0.0.jar" />-->
<!-- <pathelement location="lib/junit-jupiter-5.4.2.jar" />-->
<!-- <pathelement location="lib/junit-jupiter-api-5.4.2.jar" />-->
<!-- <pathelement location="lib/junit-jupiter-engine-5.4.2.jar" />-->
<!-- <pathelement location="lib/junit-jupiter-params-5.4.2.jar" />-->
<!-- <pathelement location="lib/junit-platform-commons-1.4.2.jar" />-->
<!-- <pathelement location="lib/junit-platform-engine-1.4.2.jar" />-->
<!-- <pathelement location="lib/opentest4j-1.1.1.jar" />-->
<!-- <pathelement location="${build.dir}" />-->
<!-- </path>-->
<!-- <target name="compile">-->
<!-- <mkdir dir="${build.dir}" />-->
<!-- <javac srcdir="src" destdir="target"-->
<!-- includeantruntime="false" />-->
<!-- </target>-->
<!-- …-->
<!--</project>-->
<project name="Electronic Asset Trading Platform">
<target name="compile">
<mkdir dir="$target" />
<javac srcdir="src" destdir="target"
includeantruntime="false" />
</target>
<target name="test">
<mkdir dir = "testtarget"/>
<javac srcdir="src" destdir="testtarget" includeantruntime="false">
<classpath location=""/>
</javac>
</target>
</project>