forked from codestrikes/CodeStrikes.Java
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
Latest commit
32 lines (27 loc) · 776 Bytes
/
Copy pathbuild.xml
File metadata and controls
32 lines (27 loc) · 776 Bytes
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
<project>
<targetname="clean">
<deletedir="out"/>
</target>
<targetname="compile">
<mkdirdir="out/production"/>
<javacsrcdir="src"destdir="out/production">
<classpath>
<filesetdir="lib">
<includename="*.jar" />
</fileset>
</classpath>
</javac>
</target>
<targetname="jar">
<mkdirdir="out/artifacts"/>
<jardestfile="out/artifacts/codestrikes.java.adapter.jar"basedir="out/production">
<manifest>
<attributename="Main-Class"value="net.codestrikes.adapter.Main"/>
</manifest>
<zipgroupfilesetdir="lib"includes="*.jar"/>
</jar>
</target>
<targetname="run">
<javajar="out/artifacts/codestrikes.java.adapter.jar"fork="true"/>
</target>
</project>