forked from Progether/JAdventure
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.xml
More file actions
150 lines (122 loc) · 4.16 KB
/
build.xml
File metadata and controls
150 lines (122 loc) · 4.16 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?xml version="1.0"?>
<project xmlns:ivy="antlib:org.apache.ivy.ant" name="JAdventure" basedir="." default="main">
<property name="src.dir" value="src/main/java" />
<property name="src.test.dir" value="src/test/java" />
<property name="main-class" value="com.jadventure.game.JAdventure" />
<property name="build.dir" value="build" />
<property name="classes.dir" value="${build.dir}/classes" />
<property name="jar.dir" value="${build.dir}/jar" />
<property name="lib.dir" value="lib"/>
<property name="one-jar.dist.dir" value="one-jar-ant"/>
<import file="${one-jar.dist.dir}/one-jar-ant-task.xml" />
<path id="libraries.path">
<fileset dir="${lib.dir}">
<include name="*.jar"/>
</fileset>
</path>
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar"/>
</path>
<path id="application" location="${jar.dir}/${ant.project.name}.jar"/>
<target name="resolve">
<ivy:retrieve />
</target>
<target name="compile" depends="resolve">
<mkdir dir="${classes.dir}"/>
<javac debug="true" includeantruntime="false" srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath"/>
<javac debug="true" includeantruntime="false" srcdir="${src.test.dir}" destdir="${classes.dir}" classpathref="classpath"/>
</target>
<target name="rebuild" depends="clean">
<antcall target="compile" />
</target>
<target name="one-jar" depends="compile">
<mkdir dir="${build.dir}/json"/>
<mkdir dir="${build.dir}/json/json"/>
<copy todir="${build.dir}/json/json">
<fileset dir="json"/>
</copy>
<one-jar destfile="${jar.dir}/${ant.project.name}-single.jar" onejarmainclass="${main-class}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
</manifest>
<main>
<fileset dir="${classes.dir}"/>
</main>
<lib>
<fileset dir="${lib.dir}"/>
</lib>
<fileset dir="${build.dir}/json"/>
</one-jar>
</target>
<target name="jar" depends="compile">
<mkdir dir="${jar.dir}"/>
<mkdir dir="${classes.dir}/${lib.dir}"/>
<copy todir="${classes.dir}/${lib.dir}" flatten="true">
<path refid="libraries.path"/>
</copy>
<manifestclasspath property="manifest.classpath" jarfile="${jar.file}">
<classpath>
<fileset dir="${lib.dir}" includes="*.jar"/>
</classpath>
</manifestclasspath>
<jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}">
<manifest>
<attribute name="Main-Class" value="${main-class}"/>
<attribute name="Class-Path" value="${manifest.classpath}"/>
</manifest>
</jar>
</target>
<target name="dist" depends="jar, one-jar">
<copy todir="${jar.dir}/lib">
<fileset dir="lib" />
</copy>
<copy todir="${jar.dir}/json">
<fileset dir="json" />
</copy>
</target>
<target name="copy-resources">
<copy todir="${classes.dir}">
<fileset dir="${basedir}/src/main/resources" />
</copy>
<copy todir="${classes.dir}">
<fileset dir="${basedir}/src/test/resources" />
</copy>
</target>
<target name="junit" depends="copy-resources, jar">
<junit printsummary="yes" haltonfailure="yes" showoutput="yes">
<classpath>
<path refid="classpath"/>
<path refid="application"/>
</classpath>
<formatter usefile="false" type="plain" />
<batchtest fork="yes">
<fileset dir="${src.test.dir}" includes="**/*Test.java"/>
</batchtest>
</junit>
</target>
<target name="run-app">
<condition property="arg0" value="stand_alone">
<not>
<isset property="arg0"/>
</not>
</condition>
<java fork="true" classname="${main-class}">
<arg value="${arg0}">
</arg>
<arg value="${arg1}">
</arg>
<arg value="${arg2}">
</arg>
<classpath>
<path refid="classpath"/>
<path refid="application"/>
</classpath>
</java>
</target>
<target name="run" depends="junit, run-app" />
<target name="run-no-tests" depends="copy-resources, jar, run-app" />
<target name="clean">
<delete dir="build" />
</target>
<target name="main" depends="run" />
</project>