franta-hg@27
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
franta-hg@27
|
2 |
<!--
|
franta-hg@27
|
3 |
*** GENERATED FROM project.xml - DO NOT EDIT ***
|
franta-hg@27
|
4 |
*** EDIT ../build.xml INSTEAD ***
|
franta-hg@27
|
5 |
|
franta-hg@27
|
6 |
For the purpose of easier reading the script
|
franta-hg@27
|
7 |
is divided into following sections:
|
franta-hg@27
|
8 |
|
franta-hg@27
|
9 |
- initialization
|
franta-hg@27
|
10 |
- compilation
|
franta-hg@27
|
11 |
- jar
|
franta-hg@27
|
12 |
- execution
|
franta-hg@27
|
13 |
- debugging
|
franta-hg@27
|
14 |
- javadoc
|
franta-hg@27
|
15 |
- junit compilation
|
franta-hg@27
|
16 |
- junit execution
|
franta-hg@27
|
17 |
- junit debugging
|
franta-hg@27
|
18 |
- applet
|
franta-hg@27
|
19 |
- cleanup
|
franta-hg@27
|
20 |
|
franta-hg@27
|
21 |
-->
|
franta-hg@27
|
22 |
<project xmlns:j2seproject1="http://www.netbeans.org/ns/j2se-project/1" xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3" xmlns:jaxrpc="http://www.netbeans.org/ns/j2se-project/jax-rpc" basedir=".." default="default" name="nekurak.net-lib-impl">
|
franta-hg@27
|
23 |
<fail message="Please build using Ant 1.7.1 or higher.">
|
franta-hg@27
|
24 |
<condition>
|
franta-hg@27
|
25 |
<not>
|
franta-hg@27
|
26 |
<antversion atleast="1.7.1"/>
|
franta-hg@27
|
27 |
</not>
|
franta-hg@27
|
28 |
</condition>
|
franta-hg@27
|
29 |
</fail>
|
franta-hg@27
|
30 |
<target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
|
franta-hg@27
|
31 |
<!--
|
franta-hg@27
|
32 |
======================
|
franta-hg@27
|
33 |
INITIALIZATION SECTION
|
franta-hg@27
|
34 |
======================
|
franta-hg@27
|
35 |
-->
|
franta-hg@27
|
36 |
<target name="-pre-init">
|
franta-hg@27
|
37 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
38 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
39 |
</target>
|
franta-hg@27
|
40 |
<target depends="-pre-init" name="-init-private">
|
franta-hg@27
|
41 |
<property file="nbproject/private/config.properties"/>
|
franta-hg@27
|
42 |
<property file="nbproject/private/configs/${config}.properties"/>
|
franta-hg@27
|
43 |
<property file="nbproject/private/private.properties"/>
|
franta-hg@27
|
44 |
</target>
|
franta-hg@27
|
45 |
<target depends="-pre-init,-init-private" name="-init-user">
|
franta-hg@27
|
46 |
<property file="${user.properties.file}"/>
|
franta-hg@27
|
47 |
<!-- The two properties below are usually overridden -->
|
franta-hg@27
|
48 |
<!-- by the active platform. Just a fallback. -->
|
franta-hg@27
|
49 |
<property name="default.javac.source" value="1.4"/>
|
franta-hg@27
|
50 |
<property name="default.javac.target" value="1.4"/>
|
franta-hg@27
|
51 |
</target>
|
franta-hg@27
|
52 |
<target depends="-pre-init,-init-private,-init-user" name="-init-project">
|
franta-hg@27
|
53 |
<property file="nbproject/configs/${config}.properties"/>
|
franta-hg@27
|
54 |
<property file="nbproject/project.properties"/>
|
franta-hg@27
|
55 |
</target>
|
franta-hg@27
|
56 |
<target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
|
franta-hg@27
|
57 |
<available file="${manifest.file}" property="manifest.available"/>
|
franta-hg@186
|
58 |
<condition property="splashscreen.available">
|
franta-hg@186
|
59 |
<and>
|
franta-hg@186
|
60 |
<not>
|
franta-hg@186
|
61 |
<equals arg1="${application.splash}" arg2="" trim="true"/>
|
franta-hg@186
|
62 |
</not>
|
franta-hg@186
|
63 |
<available file="${application.splash}"/>
|
franta-hg@186
|
64 |
</and>
|
franta-hg@186
|
65 |
</condition>
|
franta-hg@27
|
66 |
<condition property="main.class.available">
|
franta-hg@27
|
67 |
<and>
|
franta-hg@27
|
68 |
<isset property="main.class"/>
|
franta-hg@27
|
69 |
<not>
|
franta-hg@27
|
70 |
<equals arg1="${main.class}" arg2="" trim="true"/>
|
franta-hg@27
|
71 |
</not>
|
franta-hg@27
|
72 |
</and>
|
franta-hg@27
|
73 |
</condition>
|
franta-hg@27
|
74 |
<condition property="manifest.available+main.class">
|
franta-hg@27
|
75 |
<and>
|
franta-hg@27
|
76 |
<isset property="manifest.available"/>
|
franta-hg@27
|
77 |
<isset property="main.class.available"/>
|
franta-hg@27
|
78 |
</and>
|
franta-hg@27
|
79 |
</condition>
|
franta-hg@186
|
80 |
<condition property="do.archive">
|
franta-hg@186
|
81 |
<not>
|
franta-hg@186
|
82 |
<istrue value="${jar.archive.disabled}"/>
|
franta-hg@186
|
83 |
</not>
|
franta-hg@186
|
84 |
</condition>
|
franta-hg@27
|
85 |
<condition property="do.mkdist">
|
franta-hg@27
|
86 |
<and>
|
franta-hg@186
|
87 |
<isset property="do.archive"/>
|
franta-hg@27
|
88 |
<isset property="libs.CopyLibs.classpath"/>
|
franta-hg@27
|
89 |
<not>
|
franta-hg@27
|
90 |
<istrue value="${mkdist.disabled}"/>
|
franta-hg@27
|
91 |
</not>
|
franta-hg@27
|
92 |
</and>
|
franta-hg@27
|
93 |
</condition>
|
franta-hg@27
|
94 |
<condition property="manifest.available+main.class+mkdist.available">
|
franta-hg@27
|
95 |
<and>
|
franta-hg@27
|
96 |
<istrue value="${manifest.available+main.class}"/>
|
franta-hg@27
|
97 |
<isset property="do.mkdist"/>
|
franta-hg@27
|
98 |
</and>
|
franta-hg@27
|
99 |
</condition>
|
franta-hg@142
|
100 |
<condition property="do.archive+manifest.available">
|
franta-hg@142
|
101 |
<and>
|
franta-hg@142
|
102 |
<isset property="manifest.available"/>
|
franta-hg@142
|
103 |
<istrue value="${do.archive}"/>
|
franta-hg@142
|
104 |
</and>
|
franta-hg@142
|
105 |
</condition>
|
franta-hg@186
|
106 |
<condition property="do.archive+main.class.available">
|
franta-hg@186
|
107 |
<and>
|
franta-hg@186
|
108 |
<isset property="main.class.available"/>
|
franta-hg@186
|
109 |
<istrue value="${do.archive}"/>
|
franta-hg@186
|
110 |
</and>
|
franta-hg@186
|
111 |
</condition>
|
franta-hg@186
|
112 |
<condition property="do.archive+splashscreen.available">
|
franta-hg@186
|
113 |
<and>
|
franta-hg@186
|
114 |
<isset property="splashscreen.available"/>
|
franta-hg@186
|
115 |
<istrue value="${do.archive}"/>
|
franta-hg@186
|
116 |
</and>
|
franta-hg@186
|
117 |
</condition>
|
franta-hg@142
|
118 |
<condition property="do.archive+manifest.available+main.class">
|
franta-hg@142
|
119 |
<and>
|
franta-hg@27
|
120 |
<istrue value="${manifest.available+main.class}"/>
|
franta-hg@142
|
121 |
<istrue value="${do.archive}"/>
|
franta-hg@142
|
122 |
</and>
|
franta-hg@142
|
123 |
</condition>
|
franta-hg@186
|
124 |
<condition property="manifest.available-mkdist.available">
|
franta-hg@186
|
125 |
<or>
|
franta-hg@186
|
126 |
<istrue value="${manifest.available}"/>
|
franta-hg@186
|
127 |
<isset property="do.mkdist"/>
|
franta-hg@186
|
128 |
</or>
|
franta-hg@142
|
129 |
</condition>
|
franta-hg@186
|
130 |
<condition property="manifest.available+main.class-mkdist.available">
|
franta-hg@186
|
131 |
<or>
|
franta-hg@186
|
132 |
<istrue value="${manifest.available+main.class}"/>
|
franta-hg@186
|
133 |
<isset property="do.mkdist"/>
|
franta-hg@186
|
134 |
</or>
|
franta-hg@27
|
135 |
</condition>
|
franta-hg@27
|
136 |
<condition property="have.tests">
|
franta-hg@27
|
137 |
<or>
|
franta-hg@27
|
138 |
<available file="${test.src.dir}"/>
|
franta-hg@27
|
139 |
</or>
|
franta-hg@27
|
140 |
</condition>
|
franta-hg@27
|
141 |
<condition property="have.sources">
|
franta-hg@27
|
142 |
<or>
|
franta-hg@27
|
143 |
<available file="${src.dir}"/>
|
franta-hg@27
|
144 |
</or>
|
franta-hg@27
|
145 |
</condition>
|
franta-hg@27
|
146 |
<condition property="netbeans.home+have.tests">
|
franta-hg@27
|
147 |
<and>
|
franta-hg@27
|
148 |
<isset property="netbeans.home"/>
|
franta-hg@27
|
149 |
<isset property="have.tests"/>
|
franta-hg@27
|
150 |
</and>
|
franta-hg@27
|
151 |
</condition>
|
franta-hg@27
|
152 |
<condition property="no.javadoc.preview">
|
franta-hg@27
|
153 |
<and>
|
franta-hg@27
|
154 |
<isset property="javadoc.preview"/>
|
franta-hg@27
|
155 |
<isfalse value="${javadoc.preview}"/>
|
franta-hg@27
|
156 |
</and>
|
franta-hg@27
|
157 |
</condition>
|
franta-hg@27
|
158 |
<property name="run.jvmargs" value=""/>
|
franta-hg@27
|
159 |
<property name="javac.compilerargs" value=""/>
|
franta-hg@27
|
160 |
<property name="work.dir" value="${basedir}"/>
|
franta-hg@27
|
161 |
<condition property="no.deps">
|
franta-hg@27
|
162 |
<and>
|
franta-hg@27
|
163 |
<istrue value="${no.dependencies}"/>
|
franta-hg@27
|
164 |
</and>
|
franta-hg@27
|
165 |
</condition>
|
franta-hg@27
|
166 |
<property name="javac.debug" value="true"/>
|
franta-hg@27
|
167 |
<property name="javadoc.preview" value="true"/>
|
franta-hg@27
|
168 |
<property name="application.args" value=""/>
|
franta-hg@27
|
169 |
<property name="source.encoding" value="${file.encoding}"/>
|
franta-hg@27
|
170 |
<property name="runtime.encoding" value="${source.encoding}"/>
|
franta-hg@27
|
171 |
<condition property="javadoc.encoding.used" value="${javadoc.encoding}">
|
franta-hg@27
|
172 |
<and>
|
franta-hg@27
|
173 |
<isset property="javadoc.encoding"/>
|
franta-hg@27
|
174 |
<not>
|
franta-hg@27
|
175 |
<equals arg1="${javadoc.encoding}" arg2=""/>
|
franta-hg@27
|
176 |
</not>
|
franta-hg@27
|
177 |
</and>
|
franta-hg@27
|
178 |
</condition>
|
franta-hg@27
|
179 |
<property name="javadoc.encoding.used" value="${source.encoding}"/>
|
franta-hg@27
|
180 |
<property name="includes" value="**"/>
|
franta-hg@27
|
181 |
<property name="excludes" value=""/>
|
franta-hg@27
|
182 |
<property name="do.depend" value="false"/>
|
franta-hg@27
|
183 |
<condition property="do.depend.true">
|
franta-hg@27
|
184 |
<istrue value="${do.depend}"/>
|
franta-hg@27
|
185 |
</condition>
|
franta-hg@27
|
186 |
<path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
|
franta-hg@27
|
187 |
<condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
|
franta-hg@27
|
188 |
<length length="0" string="${endorsed.classpath}" when="greater"/>
|
franta-hg@27
|
189 |
</condition>
|
franta-hg@186
|
190 |
<condition else="false" property="jdkBug6558476">
|
franta-hg@186
|
191 |
<and>
|
franta-hg@186
|
192 |
<matches pattern="1\.[56]" string="${java.specification.version}"/>
|
franta-hg@186
|
193 |
<not>
|
franta-hg@186
|
194 |
<os family="unix"/>
|
franta-hg@186
|
195 |
</not>
|
franta-hg@186
|
196 |
</and>
|
franta-hg@186
|
197 |
</condition>
|
franta-hg@186
|
198 |
<property name="javac.fork" value="${jdkBug6558476}"/>
|
franta-hg@142
|
199 |
<property name="jar.index" value="false"/>
|
franta-hg@186
|
200 |
<property name="jar.index.metainf" value="${jar.index}"/>
|
franta-hg@142
|
201 |
<available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
|
franta-hg@27
|
202 |
</target>
|
franta-hg@27
|
203 |
<target name="-post-init">
|
franta-hg@27
|
204 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
205 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
206 |
</target>
|
franta-hg@27
|
207 |
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
|
franta-hg@27
|
208 |
<fail unless="src.dir">Must set src.dir</fail>
|
franta-hg@27
|
209 |
<fail unless="test.src.dir">Must set test.src.dir</fail>
|
franta-hg@27
|
210 |
<fail unless="build.dir">Must set build.dir</fail>
|
franta-hg@27
|
211 |
<fail unless="dist.dir">Must set dist.dir</fail>
|
franta-hg@27
|
212 |
<fail unless="build.classes.dir">Must set build.classes.dir</fail>
|
franta-hg@27
|
213 |
<fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
|
franta-hg@27
|
214 |
<fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
|
franta-hg@27
|
215 |
<fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
|
franta-hg@27
|
216 |
<fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
|
franta-hg@27
|
217 |
<fail unless="dist.jar">Must set dist.jar</fail>
|
franta-hg@27
|
218 |
</target>
|
franta-hg@27
|
219 |
<target name="-init-macrodef-property">
|
franta-hg@27
|
220 |
<macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
|
franta-hg@27
|
221 |
<attribute name="name"/>
|
franta-hg@27
|
222 |
<attribute name="value"/>
|
franta-hg@27
|
223 |
<sequential>
|
franta-hg@27
|
224 |
<property name="@{name}" value="${@{value}}"/>
|
franta-hg@27
|
225 |
</sequential>
|
franta-hg@27
|
226 |
</macrodef>
|
franta-hg@27
|
227 |
</target>
|
franta-hg@142
|
228 |
<target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
|
franta-hg@27
|
229 |
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
|
franta-hg@27
|
230 |
<attribute default="${src.dir}" name="srcdir"/>
|
franta-hg@27
|
231 |
<attribute default="${build.classes.dir}" name="destdir"/>
|
franta-hg@27
|
232 |
<attribute default="${javac.classpath}" name="classpath"/>
|
franta-hg@142
|
233 |
<attribute default="${javac.processorpath}" name="processorpath"/>
|
franta-hg@142
|
234 |
<attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
|
franta-hg@142
|
235 |
<attribute default="${includes}" name="includes"/>
|
franta-hg@142
|
236 |
<attribute default="${excludes}" name="excludes"/>
|
franta-hg@142
|
237 |
<attribute default="${javac.debug}" name="debug"/>
|
franta-hg@142
|
238 |
<attribute default="${empty.dir}" name="sourcepath"/>
|
franta-hg@142
|
239 |
<attribute default="${empty.dir}" name="gensrcdir"/>
|
franta-hg@142
|
240 |
<element name="customize" optional="true"/>
|
franta-hg@142
|
241 |
<sequential>
|
franta-hg@142
|
242 |
<property location="${build.dir}/empty" name="empty.dir"/>
|
franta-hg@142
|
243 |
<mkdir dir="${empty.dir}"/>
|
franta-hg@142
|
244 |
<mkdir dir="@{apgeneratedsrcdir}"/>
|
franta-hg@142
|
245 |
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
|
franta-hg@142
|
246 |
<src>
|
franta-hg@142
|
247 |
<dirset dir="@{gensrcdir}" erroronmissingdir="false">
|
franta-hg@142
|
248 |
<include name="*"/>
|
franta-hg@142
|
249 |
</dirset>
|
franta-hg@142
|
250 |
</src>
|
franta-hg@142
|
251 |
<classpath>
|
franta-hg@142
|
252 |
<path path="@{classpath}"/>
|
franta-hg@142
|
253 |
</classpath>
|
franta-hg@142
|
254 |
<compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
|
franta-hg@142
|
255 |
<compilerarg line="${javac.compilerargs}"/>
|
franta-hg@142
|
256 |
<compilerarg value="-processorpath"/>
|
franta-hg@142
|
257 |
<compilerarg path="@{processorpath}:${empty.dir}"/>
|
franta-hg@142
|
258 |
<compilerarg line="${ap.processors.internal}"/>
|
franta-hg@142
|
259 |
<compilerarg line="${annotation.processing.processor.options}"/>
|
franta-hg@142
|
260 |
<compilerarg value="-s"/>
|
franta-hg@142
|
261 |
<compilerarg path="@{apgeneratedsrcdir}"/>
|
franta-hg@142
|
262 |
<compilerarg line="${ap.proc.none.internal}"/>
|
franta-hg@142
|
263 |
<customize/>
|
franta-hg@142
|
264 |
</javac>
|
franta-hg@142
|
265 |
</sequential>
|
franta-hg@142
|
266 |
</macrodef>
|
franta-hg@142
|
267 |
</target>
|
franta-hg@142
|
268 |
<target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
|
franta-hg@142
|
269 |
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
|
franta-hg@142
|
270 |
<attribute default="${src.dir}" name="srcdir"/>
|
franta-hg@142
|
271 |
<attribute default="${build.classes.dir}" name="destdir"/>
|
franta-hg@142
|
272 |
<attribute default="${javac.classpath}" name="classpath"/>
|
franta-hg@142
|
273 |
<attribute default="${javac.processorpath}" name="processorpath"/>
|
franta-hg@142
|
274 |
<attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
|
franta-hg@27
|
275 |
<attribute default="${includes}" name="includes"/>
|
franta-hg@27
|
276 |
<attribute default="${excludes}" name="excludes"/>
|
franta-hg@27
|
277 |
<attribute default="${javac.debug}" name="debug"/>
|
franta-hg@27
|
278 |
<attribute default="${empty.dir}" name="sourcepath"/>
|
franta-hg@27
|
279 |
<attribute default="${empty.dir}" name="gensrcdir"/>
|
franta-hg@27
|
280 |
<element name="customize" optional="true"/>
|
franta-hg@27
|
281 |
<sequential>
|
franta-hg@27
|
282 |
<property location="${build.dir}/empty" name="empty.dir"/>
|
franta-hg@27
|
283 |
<mkdir dir="${empty.dir}"/>
|
franta-hg@27
|
284 |
<javac debug="@{debug}" deprecation="${javac.deprecation}" destdir="@{destdir}" encoding="${source.encoding}" excludes="@{excludes}" fork="${javac.fork}" includeantruntime="false" includes="@{includes}" source="${javac.source}" sourcepath="@{sourcepath}" srcdir="@{srcdir}" target="${javac.target}" tempdir="${java.io.tmpdir}">
|
franta-hg@27
|
285 |
<src>
|
franta-hg@27
|
286 |
<dirset dir="@{gensrcdir}" erroronmissingdir="false">
|
franta-hg@27
|
287 |
<include name="*"/>
|
franta-hg@27
|
288 |
</dirset>
|
franta-hg@27
|
289 |
</src>
|
franta-hg@27
|
290 |
<classpath>
|
franta-hg@27
|
291 |
<path path="@{classpath}"/>
|
franta-hg@27
|
292 |
</classpath>
|
franta-hg@27
|
293 |
<compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
|
franta-hg@27
|
294 |
<compilerarg line="${javac.compilerargs}"/>
|
franta-hg@27
|
295 |
<customize/>
|
franta-hg@27
|
296 |
</javac>
|
franta-hg@27
|
297 |
</sequential>
|
franta-hg@27
|
298 |
</macrodef>
|
franta-hg@142
|
299 |
</target>
|
franta-hg@142
|
300 |
<target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
|
franta-hg@27
|
301 |
<macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
|
franta-hg@27
|
302 |
<attribute default="${src.dir}" name="srcdir"/>
|
franta-hg@27
|
303 |
<attribute default="${build.classes.dir}" name="destdir"/>
|
franta-hg@27
|
304 |
<attribute default="${javac.classpath}" name="classpath"/>
|
franta-hg@27
|
305 |
<sequential>
|
franta-hg@27
|
306 |
<depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
|
franta-hg@27
|
307 |
<classpath>
|
franta-hg@27
|
308 |
<path path="@{classpath}"/>
|
franta-hg@27
|
309 |
</classpath>
|
franta-hg@27
|
310 |
</depend>
|
franta-hg@27
|
311 |
</sequential>
|
franta-hg@27
|
312 |
</macrodef>
|
franta-hg@27
|
313 |
<macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
|
franta-hg@27
|
314 |
<attribute default="${build.classes.dir}" name="destdir"/>
|
franta-hg@27
|
315 |
<sequential>
|
franta-hg@27
|
316 |
<fail unless="javac.includes">Must set javac.includes</fail>
|
franta-hg@154
|
317 |
<pathconvert pathsep="${line.separator}" property="javac.includes.binary">
|
franta-hg@27
|
318 |
<path>
|
franta-hg@27
|
319 |
<filelist dir="@{destdir}" files="${javac.includes}"/>
|
franta-hg@27
|
320 |
</path>
|
franta-hg@27
|
321 |
<globmapper from="*.java" to="*.class"/>
|
franta-hg@27
|
322 |
</pathconvert>
|
franta-hg@154
|
323 |
<tempfile deleteonexit="true" property="javac.includesfile.binary"/>
|
franta-hg@154
|
324 |
<echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
|
franta-hg@27
|
325 |
<delete>
|
franta-hg@154
|
326 |
<files includesfile="${javac.includesfile.binary}"/>
|
franta-hg@27
|
327 |
</delete>
|
franta-hg@186
|
328 |
<delete>
|
franta-hg@186
|
329 |
<fileset file="${javac.includesfile.binary}"/>
|
franta-hg@186
|
330 |
</delete>
|
franta-hg@27
|
331 |
</sequential>
|
franta-hg@27
|
332 |
</macrodef>
|
franta-hg@27
|
333 |
</target>
|
franta-hg@27
|
334 |
<target name="-init-macrodef-junit">
|
franta-hg@27
|
335 |
<macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
|
franta-hg@27
|
336 |
<attribute default="${includes}" name="includes"/>
|
franta-hg@27
|
337 |
<attribute default="${excludes}" name="excludes"/>
|
franta-hg@27
|
338 |
<attribute default="**" name="testincludes"/>
|
franta-hg@27
|
339 |
<sequential>
|
franta-hg@186
|
340 |
<property name="junit.forkmode" value="perTest"/>
|
franta-hg@186
|
341 |
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
|
franta-hg@27
|
342 |
<batchtest todir="${build.test.results.dir}">
|
franta-hg@27
|
343 |
<fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
|
franta-hg@27
|
344 |
<filename name="@{testincludes}"/>
|
franta-hg@27
|
345 |
</fileset>
|
franta-hg@27
|
346 |
</batchtest>
|
franta-hg@27
|
347 |
<classpath>
|
franta-hg@27
|
348 |
<path path="${run.test.classpath}"/>
|
franta-hg@27
|
349 |
</classpath>
|
franta-hg@27
|
350 |
<syspropertyset>
|
franta-hg@27
|
351 |
<propertyref prefix="test-sys-prop."/>
|
franta-hg@27
|
352 |
<mapper from="test-sys-prop.*" to="*" type="glob"/>
|
franta-hg@27
|
353 |
</syspropertyset>
|
franta-hg@27
|
354 |
<formatter type="brief" usefile="false"/>
|
franta-hg@27
|
355 |
<formatter type="xml"/>
|
franta-hg@27
|
356 |
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
|
franta-hg@186
|
357 |
<jvmarg value="-ea"/>
|
franta-hg@27
|
358 |
<jvmarg line="${run.jvmargs}"/>
|
franta-hg@27
|
359 |
</junit>
|
franta-hg@27
|
360 |
</sequential>
|
franta-hg@27
|
361 |
</macrodef>
|
franta-hg@27
|
362 |
</target>
|
franta-hg@186
|
363 |
<target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" name="profile-init"/>
|
franta-hg@186
|
364 |
<target name="-profile-pre-init">
|
franta-hg@186
|
365 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@186
|
366 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@186
|
367 |
</target>
|
franta-hg@186
|
368 |
<target name="-profile-post-init">
|
franta-hg@186
|
369 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@186
|
370 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@186
|
371 |
</target>
|
franta-hg@186
|
372 |
<target name="-profile-init-macrodef-profile">
|
franta-hg@186
|
373 |
<macrodef name="resolve">
|
franta-hg@186
|
374 |
<attribute name="name"/>
|
franta-hg@186
|
375 |
<attribute name="value"/>
|
franta-hg@186
|
376 |
<sequential>
|
franta-hg@186
|
377 |
<property name="@{name}" value="${env.@{value}}"/>
|
franta-hg@186
|
378 |
</sequential>
|
franta-hg@186
|
379 |
</macrodef>
|
franta-hg@186
|
380 |
<macrodef name="profile">
|
franta-hg@186
|
381 |
<attribute default="${main.class}" name="classname"/>
|
franta-hg@186
|
382 |
<element name="customize" optional="true"/>
|
franta-hg@186
|
383 |
<sequential>
|
franta-hg@186
|
384 |
<property environment="env"/>
|
franta-hg@186
|
385 |
<resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
|
franta-hg@186
|
386 |
<java classname="@{classname}" dir="${profiler.info.dir}" fork="true" jvm="${profiler.info.jvm}">
|
franta-hg@186
|
387 |
<jvmarg value="${profiler.info.jvmargs.agent}"/>
|
franta-hg@186
|
388 |
<jvmarg line="${profiler.info.jvmargs}"/>
|
franta-hg@186
|
389 |
<env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
|
franta-hg@186
|
390 |
<arg line="${application.args}"/>
|
franta-hg@186
|
391 |
<classpath>
|
franta-hg@186
|
392 |
<path path="${run.classpath}"/>
|
franta-hg@186
|
393 |
</classpath>
|
franta-hg@186
|
394 |
<syspropertyset>
|
franta-hg@186
|
395 |
<propertyref prefix="run-sys-prop."/>
|
franta-hg@186
|
396 |
<mapper from="run-sys-prop.*" to="*" type="glob"/>
|
franta-hg@186
|
397 |
</syspropertyset>
|
franta-hg@186
|
398 |
<customize/>
|
franta-hg@186
|
399 |
</java>
|
franta-hg@186
|
400 |
</sequential>
|
franta-hg@186
|
401 |
</macrodef>
|
franta-hg@186
|
402 |
</target>
|
franta-hg@186
|
403 |
<target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" name="-profile-init-check">
|
franta-hg@186
|
404 |
<fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
|
franta-hg@186
|
405 |
<fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
|
franta-hg@186
|
406 |
</target>
|
franta-hg@27
|
407 |
<target depends="-init-debug-args" name="-init-macrodef-nbjpda">
|
franta-hg@27
|
408 |
<macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
|
franta-hg@27
|
409 |
<attribute default="${main.class}" name="name"/>
|
franta-hg@27
|
410 |
<attribute default="${debug.classpath}" name="classpath"/>
|
franta-hg@27
|
411 |
<attribute default="" name="stopclassname"/>
|
franta-hg@27
|
412 |
<sequential>
|
franta-hg@27
|
413 |
<nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
|
franta-hg@27
|
414 |
<classpath>
|
franta-hg@27
|
415 |
<path path="@{classpath}"/>
|
franta-hg@27
|
416 |
</classpath>
|
franta-hg@27
|
417 |
</nbjpdastart>
|
franta-hg@27
|
418 |
</sequential>
|
franta-hg@27
|
419 |
</macrodef>
|
franta-hg@27
|
420 |
<macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
|
franta-hg@27
|
421 |
<attribute default="${build.classes.dir}" name="dir"/>
|
franta-hg@27
|
422 |
<sequential>
|
franta-hg@27
|
423 |
<nbjpdareload>
|
franta-hg@27
|
424 |
<fileset dir="@{dir}" includes="${fix.classes}">
|
franta-hg@27
|
425 |
<include name="${fix.includes}*.class"/>
|
franta-hg@27
|
426 |
</fileset>
|
franta-hg@27
|
427 |
</nbjpdareload>
|
franta-hg@27
|
428 |
</sequential>
|
franta-hg@27
|
429 |
</macrodef>
|
franta-hg@27
|
430 |
</target>
|
franta-hg@27
|
431 |
<target name="-init-debug-args">
|
franta-hg@27
|
432 |
<property name="version-output" value="java version "${ant.java.version}"/>
|
franta-hg@27
|
433 |
<condition property="have-jdk-older-than-1.4">
|
franta-hg@27
|
434 |
<or>
|
franta-hg@27
|
435 |
<contains string="${version-output}" substring="java version "1.0"/>
|
franta-hg@27
|
436 |
<contains string="${version-output}" substring="java version "1.1"/>
|
franta-hg@27
|
437 |
<contains string="${version-output}" substring="java version "1.2"/>
|
franta-hg@27
|
438 |
<contains string="${version-output}" substring="java version "1.3"/>
|
franta-hg@27
|
439 |
</or>
|
franta-hg@27
|
440 |
</condition>
|
franta-hg@27
|
441 |
<condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
|
franta-hg@27
|
442 |
<istrue value="${have-jdk-older-than-1.4}"/>
|
franta-hg@27
|
443 |
</condition>
|
franta-hg@27
|
444 |
<condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
|
franta-hg@27
|
445 |
<os family="windows"/>
|
franta-hg@27
|
446 |
</condition>
|
franta-hg@27
|
447 |
<condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
|
franta-hg@27
|
448 |
<isset property="debug.transport"/>
|
franta-hg@27
|
449 |
</condition>
|
franta-hg@27
|
450 |
</target>
|
franta-hg@27
|
451 |
<target depends="-init-debug-args" name="-init-macrodef-debug">
|
franta-hg@27
|
452 |
<macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
|
franta-hg@27
|
453 |
<attribute default="${main.class}" name="classname"/>
|
franta-hg@27
|
454 |
<attribute default="${debug.classpath}" name="classpath"/>
|
franta-hg@27
|
455 |
<element name="customize" optional="true"/>
|
franta-hg@27
|
456 |
<sequential>
|
franta-hg@27
|
457 |
<java classname="@{classname}" dir="${work.dir}" fork="true">
|
franta-hg@27
|
458 |
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
|
franta-hg@27
|
459 |
<jvmarg line="${debug-args-line}"/>
|
franta-hg@27
|
460 |
<jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
|
franta-hg@27
|
461 |
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
|
franta-hg@27
|
462 |
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
|
franta-hg@27
|
463 |
<jvmarg line="${run.jvmargs}"/>
|
franta-hg@27
|
464 |
<classpath>
|
franta-hg@27
|
465 |
<path path="@{classpath}"/>
|
franta-hg@27
|
466 |
</classpath>
|
franta-hg@27
|
467 |
<syspropertyset>
|
franta-hg@27
|
468 |
<propertyref prefix="run-sys-prop."/>
|
franta-hg@27
|
469 |
<mapper from="run-sys-prop.*" to="*" type="glob"/>
|
franta-hg@27
|
470 |
</syspropertyset>
|
franta-hg@27
|
471 |
<customize/>
|
franta-hg@27
|
472 |
</java>
|
franta-hg@27
|
473 |
</sequential>
|
franta-hg@27
|
474 |
</macrodef>
|
franta-hg@27
|
475 |
</target>
|
franta-hg@27
|
476 |
<target name="-init-macrodef-java">
|
franta-hg@27
|
477 |
<macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
|
franta-hg@27
|
478 |
<attribute default="${main.class}" name="classname"/>
|
franta-hg@27
|
479 |
<attribute default="${run.classpath}" name="classpath"/>
|
franta-hg@27
|
480 |
<element name="customize" optional="true"/>
|
franta-hg@27
|
481 |
<sequential>
|
franta-hg@27
|
482 |
<java classname="@{classname}" dir="${work.dir}" fork="true">
|
franta-hg@27
|
483 |
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
|
franta-hg@27
|
484 |
<jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
|
franta-hg@27
|
485 |
<redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
|
franta-hg@27
|
486 |
<jvmarg line="${run.jvmargs}"/>
|
franta-hg@27
|
487 |
<classpath>
|
franta-hg@27
|
488 |
<path path="@{classpath}"/>
|
franta-hg@27
|
489 |
</classpath>
|
franta-hg@27
|
490 |
<syspropertyset>
|
franta-hg@27
|
491 |
<propertyref prefix="run-sys-prop."/>
|
franta-hg@27
|
492 |
<mapper from="run-sys-prop.*" to="*" type="glob"/>
|
franta-hg@27
|
493 |
</syspropertyset>
|
franta-hg@27
|
494 |
<customize/>
|
franta-hg@27
|
495 |
</java>
|
franta-hg@27
|
496 |
</sequential>
|
franta-hg@27
|
497 |
</macrodef>
|
franta-hg@27
|
498 |
</target>
|
franta-hg@142
|
499 |
<target name="-init-macrodef-copylibs">
|
franta-hg@142
|
500 |
<macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
|
franta-hg@186
|
501 |
<attribute default="${manifest.file}" name="manifest"/>
|
franta-hg@142
|
502 |
<element name="customize" optional="true"/>
|
franta-hg@142
|
503 |
<sequential>
|
franta-hg@142
|
504 |
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
|
franta-hg@142
|
505 |
<pathconvert property="run.classpath.without.build.classes.dir">
|
franta-hg@142
|
506 |
<path path="${run.classpath}"/>
|
franta-hg@142
|
507 |
<map from="${build.classes.dir.resolved}" to=""/>
|
franta-hg@142
|
508 |
</pathconvert>
|
franta-hg@142
|
509 |
<pathconvert pathsep=" " property="jar.classpath">
|
franta-hg@142
|
510 |
<path path="${run.classpath.without.build.classes.dir}"/>
|
franta-hg@142
|
511 |
<chainedmapper>
|
franta-hg@142
|
512 |
<flattenmapper/>
|
franta-hg@142
|
513 |
<globmapper from="*" to="lib/*"/>
|
franta-hg@142
|
514 |
</chainedmapper>
|
franta-hg@142
|
515 |
</pathconvert>
|
franta-hg@142
|
516 |
<taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
|
franta-hg@186
|
517 |
<copylibs compress="${jar.compress}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
|
franta-hg@142
|
518 |
<fileset dir="${build.classes.dir}"/>
|
franta-hg@142
|
519 |
<manifest>
|
franta-hg@142
|
520 |
<attribute name="Class-Path" value="${jar.classpath}"/>
|
franta-hg@142
|
521 |
<customize/>
|
franta-hg@142
|
522 |
</manifest>
|
franta-hg@142
|
523 |
</copylibs>
|
franta-hg@142
|
524 |
</sequential>
|
franta-hg@142
|
525 |
</macrodef>
|
franta-hg@142
|
526 |
</target>
|
franta-hg@27
|
527 |
<target name="-init-presetdef-jar">
|
franta-hg@27
|
528 |
<presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
|
franta-hg@142
|
529 |
<jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
|
franta-hg@27
|
530 |
<j2seproject1:fileset dir="${build.classes.dir}"/>
|
franta-hg@27
|
531 |
</jar>
|
franta-hg@27
|
532 |
</presetdef>
|
franta-hg@27
|
533 |
</target>
|
franta-hg@142
|
534 |
<target name="-init-ap-cmdline-properties">
|
franta-hg@142
|
535 |
<property name="annotation.processing.enabled" value="true"/>
|
franta-hg@142
|
536 |
<property name="annotation.processing.processors.list" value=""/>
|
franta-hg@142
|
537 |
<property name="annotation.processing.processor.options" value=""/>
|
franta-hg@142
|
538 |
<property name="annotation.processing.run.all.processors" value="true"/>
|
franta-hg@142
|
539 |
<property name="javac.processorpath" value="${javac.classpath}"/>
|
franta-hg@142
|
540 |
<property name="javac.test.processorpath" value="${javac.test.classpath}"/>
|
franta-hg@142
|
541 |
<condition property="ap.supported.internal" value="true">
|
franta-hg@142
|
542 |
<not>
|
franta-hg@142
|
543 |
<matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
|
franta-hg@142
|
544 |
</not>
|
franta-hg@142
|
545 |
</condition>
|
franta-hg@142
|
546 |
</target>
|
franta-hg@142
|
547 |
<target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
|
franta-hg@142
|
548 |
<condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
|
franta-hg@142
|
549 |
<isfalse value="${annotation.processing.run.all.processors}"/>
|
franta-hg@142
|
550 |
</condition>
|
franta-hg@142
|
551 |
<condition else="" property="ap.proc.none.internal" value="-proc:none">
|
franta-hg@142
|
552 |
<isfalse value="${annotation.processing.enabled}"/>
|
franta-hg@142
|
553 |
</condition>
|
franta-hg@142
|
554 |
</target>
|
franta-hg@142
|
555 |
<target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
|
franta-hg@142
|
556 |
<property name="ap.cmd.line.internal" value=""/>
|
franta-hg@142
|
557 |
</target>
|
franta-hg@142
|
558 |
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
|
franta-hg@27
|
559 |
<!--
|
franta-hg@27
|
560 |
===================
|
franta-hg@27
|
561 |
COMPILATION SECTION
|
franta-hg@27
|
562 |
===================
|
franta-hg@27
|
563 |
-->
|
franta-hg@27
|
564 |
<target name="-deps-jar-init" unless="built-jar.properties">
|
franta-hg@27
|
565 |
<property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
|
franta-hg@27
|
566 |
<delete file="${built-jar.properties}" quiet="true"/>
|
franta-hg@27
|
567 |
</target>
|
franta-hg@27
|
568 |
<target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
|
franta-hg@27
|
569 |
<echo level="warn" message="Cycle detected: nekurak.net-lib was already built"/>
|
franta-hg@27
|
570 |
</target>
|
franta-hg@27
|
571 |
<target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
|
franta-hg@27
|
572 |
<mkdir dir="${build.dir}"/>
|
franta-hg@27
|
573 |
<touch file="${built-jar.properties}" verbose="false"/>
|
franta-hg@27
|
574 |
<property file="${built-jar.properties}" prefix="already.built.jar."/>
|
franta-hg@27
|
575 |
<antcall target="-warn-already-built-jar"/>
|
franta-hg@27
|
576 |
<propertyfile file="${built-jar.properties}">
|
franta-hg@27
|
577 |
<entry key="${basedir}" value=""/>
|
franta-hg@27
|
578 |
</propertyfile>
|
franta-hg@27
|
579 |
</target>
|
franta-hg@27
|
580 |
<target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
|
franta-hg@27
|
581 |
<target depends="init" name="-check-automatic-build">
|
franta-hg@27
|
582 |
<available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
|
franta-hg@27
|
583 |
</target>
|
franta-hg@27
|
584 |
<target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
|
franta-hg@27
|
585 |
<antcall target="clean"/>
|
franta-hg@27
|
586 |
</target>
|
franta-hg@27
|
587 |
<target depends="init,deps-jar" name="-pre-pre-compile">
|
franta-hg@27
|
588 |
<mkdir dir="${build.classes.dir}"/>
|
franta-hg@27
|
589 |
</target>
|
franta-hg@27
|
590 |
<target name="-pre-compile">
|
franta-hg@27
|
591 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
592 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
593 |
</target>
|
franta-hg@27
|
594 |
<target if="do.depend.true" name="-compile-depend">
|
franta-hg@27
|
595 |
<pathconvert property="build.generated.subdirs">
|
franta-hg@27
|
596 |
<dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
|
franta-hg@27
|
597 |
<include name="*"/>
|
franta-hg@27
|
598 |
</dirset>
|
franta-hg@27
|
599 |
</pathconvert>
|
franta-hg@27
|
600 |
<j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
|
franta-hg@27
|
601 |
</target>
|
franta-hg@142
|
602 |
<target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
|
franta-hg@27
|
603 |
<j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
|
franta-hg@27
|
604 |
<copy todir="${build.classes.dir}">
|
franta-hg@27
|
605 |
<fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
|
franta-hg@27
|
606 |
</copy>
|
franta-hg@27
|
607 |
</target>
|
franta-hg@142
|
608 |
<target if="has.persistence.xml" name="-copy-persistence-xml">
|
franta-hg@142
|
609 |
<mkdir dir="${build.classes.dir}/META-INF"/>
|
franta-hg@142
|
610 |
<copy todir="${build.classes.dir}/META-INF">
|
franta-hg@142
|
611 |
<fileset dir="${meta.inf.dir}" includes="persistence.xml"/>
|
franta-hg@142
|
612 |
</copy>
|
franta-hg@142
|
613 |
</target>
|
franta-hg@27
|
614 |
<target name="-post-compile">
|
franta-hg@27
|
615 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
616 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
617 |
</target>
|
franta-hg@27
|
618 |
<target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
|
franta-hg@27
|
619 |
<target name="-pre-compile-single">
|
franta-hg@27
|
620 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
621 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
622 |
</target>
|
franta-hg@27
|
623 |
<target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
|
franta-hg@27
|
624 |
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
|
franta-hg@27
|
625 |
<j2seproject3:force-recompile/>
|
franta-hg@27
|
626 |
<j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}"/>
|
franta-hg@27
|
627 |
</target>
|
franta-hg@27
|
628 |
<target name="-post-compile-single">
|
franta-hg@27
|
629 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
630 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
631 |
</target>
|
franta-hg@27
|
632 |
<target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
|
franta-hg@27
|
633 |
<!--
|
franta-hg@27
|
634 |
====================
|
franta-hg@27
|
635 |
JAR BUILDING SECTION
|
franta-hg@27
|
636 |
====================
|
franta-hg@27
|
637 |
-->
|
franta-hg@27
|
638 |
<target depends="init" name="-pre-pre-jar">
|
franta-hg@27
|
639 |
<dirname file="${dist.jar}" property="dist.jar.dir"/>
|
franta-hg@27
|
640 |
<mkdir dir="${dist.jar.dir}"/>
|
franta-hg@27
|
641 |
</target>
|
franta-hg@27
|
642 |
<target name="-pre-jar">
|
franta-hg@27
|
643 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
644 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
645 |
</target>
|
franta-hg@186
|
646 |
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive" name="-do-jar-without-manifest" unless="manifest.available-mkdist.available">
|
franta-hg@27
|
647 |
<j2seproject1:jar/>
|
franta-hg@27
|
648 |
</target>
|
franta-hg@186
|
649 |
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class-mkdist.available">
|
franta-hg@27
|
650 |
<j2seproject1:jar manifest="${manifest.file}"/>
|
franta-hg@27
|
651 |
</target>
|
franta-hg@142
|
652 |
<target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available">
|
franta-hg@27
|
653 |
<j2seproject1:jar manifest="${manifest.file}">
|
franta-hg@27
|
654 |
<j2seproject1:manifest>
|
franta-hg@27
|
655 |
<j2seproject1:attribute name="Main-Class" value="${main.class}"/>
|
franta-hg@27
|
656 |
</j2seproject1:manifest>
|
franta-hg@27
|
657 |
</j2seproject1:jar>
|
franta-hg@186
|
658 |
<echo level="info">To run this application from the command line without Ant, try:</echo>
|
franta-hg@27
|
659 |
<property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
|
franta-hg@27
|
660 |
<property location="${dist.jar}" name="dist.jar.resolved"/>
|
franta-hg@27
|
661 |
<pathconvert property="run.classpath.with.dist.jar">
|
franta-hg@27
|
662 |
<path path="${run.classpath}"/>
|
franta-hg@27
|
663 |
<map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
|
franta-hg@27
|
664 |
</pathconvert>
|
franta-hg@186
|
665 |
<echo level="info">java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
|
franta-hg@27
|
666 |
</target>
|
franta-hg@186
|
667 |
<target depends="init" if="do.archive" name="-do-jar-with-libraries-create-manifest" unless="manifest.available">
|
franta-hg@186
|
668 |
<tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
|
franta-hg@186
|
669 |
<touch file="${tmp.manifest.file}" verbose="false"/>
|
franta-hg@186
|
670 |
</target>
|
franta-hg@186
|
671 |
<target depends="init" if="do.archive+manifest.available" name="-do-jar-with-libraries-copy-manifest">
|
franta-hg@186
|
672 |
<tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
|
franta-hg@186
|
673 |
<copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>
|
franta-hg@186
|
674 |
</target>
|
franta-hg@186
|
675 |
<target depends="init,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest" if="do.archive+main.class.available" name="-do-jar-with-libraries-set-main">
|
franta-hg@186
|
676 |
<manifest file="${tmp.manifest.file}" mode="update">
|
franta-hg@186
|
677 |
<attribute name="Main-Class" value="${main.class}"/>
|
franta-hg@186
|
678 |
</manifest>
|
franta-hg@186
|
679 |
</target>
|
franta-hg@186
|
680 |
<target depends="init,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-with-libraries-set-splashscreen">
|
franta-hg@142
|
681 |
<basename file="${application.splash}" property="splashscreen.basename"/>
|
franta-hg@142
|
682 |
<mkdir dir="${build.classes.dir}/META-INF"/>
|
franta-hg@142
|
683 |
<copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
|
franta-hg@186
|
684 |
<manifest file="${tmp.manifest.file}" mode="update">
|
franta-hg@186
|
685 |
<attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
|
franta-hg@186
|
686 |
</manifest>
|
franta-hg@186
|
687 |
</target>
|
franta-hg@186
|
688 |
<target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest,-do-jar-with-libraries-set-main,-do-jar-with-libraries-set-splashscreen" if="do.mkdist" name="-do-jar-with-libraries-pack">
|
franta-hg@186
|
689 |
<j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
|
franta-hg@186
|
690 |
<echo level="info">To run this application from the command line without Ant, try:</echo>
|
franta-hg@27
|
691 |
<property location="${dist.jar}" name="dist.jar.resolved"/>
|
franta-hg@186
|
692 |
<echo level="info">java -jar "${dist.jar.resolved}"</echo>
|
franta-hg@27
|
693 |
</target>
|
franta-hg@186
|
694 |
<target depends="-do-jar-with-libraries-pack" if="do.archive" name="-do-jar-with-libraries-delete-manifest">
|
franta-hg@186
|
695 |
<delete>
|
franta-hg@186
|
696 |
<fileset file="${tmp.manifest.file}"/>
|
franta-hg@186
|
697 |
</delete>
|
franta-hg@27
|
698 |
</target>
|
franta-hg@186
|
699 |
<target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest,-do-jar-with-libraries-set-main,-do-jar-with-libraries-set-splashscreen,-do-jar-with-libraries-pack,-do-jar-with-libraries-delete-manifest" name="-do-jar-with-libraries"/>
|
franta-hg@27
|
700 |
<target name="-post-jar">
|
franta-hg@27
|
701 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
702 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
703 |
</target>
|
franta-hg@186
|
704 |
<target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/>
|
franta-hg@27
|
705 |
<!--
|
franta-hg@27
|
706 |
=================
|
franta-hg@27
|
707 |
EXECUTION SECTION
|
franta-hg@27
|
708 |
=================
|
franta-hg@27
|
709 |
-->
|
franta-hg@27
|
710 |
<target depends="init,compile" description="Run a main class." name="run">
|
franta-hg@27
|
711 |
<j2seproject1:java>
|
franta-hg@27
|
712 |
<customize>
|
franta-hg@27
|
713 |
<arg line="${application.args}"/>
|
franta-hg@27
|
714 |
</customize>
|
franta-hg@27
|
715 |
</j2seproject1:java>
|
franta-hg@27
|
716 |
</target>
|
franta-hg@27
|
717 |
<target name="-do-not-recompile">
|
franta-hg@27
|
718 |
<property name="javac.includes.binary" value=""/>
|
franta-hg@27
|
719 |
</target>
|
franta-hg@27
|
720 |
<target depends="init,compile-single" name="run-single">
|
franta-hg@27
|
721 |
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
|
franta-hg@27
|
722 |
<j2seproject1:java classname="${run.class}"/>
|
franta-hg@27
|
723 |
</target>
|
franta-hg@27
|
724 |
<target depends="init,compile-test-single" name="run-test-with-main">
|
franta-hg@27
|
725 |
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
|
franta-hg@27
|
726 |
<j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
|
franta-hg@27
|
727 |
</target>
|
franta-hg@27
|
728 |
<!--
|
franta-hg@27
|
729 |
=================
|
franta-hg@27
|
730 |
DEBUGGING SECTION
|
franta-hg@27
|
731 |
=================
|
franta-hg@27
|
732 |
-->
|
franta-hg@27
|
733 |
<target depends="init" if="netbeans.home" name="-debug-start-debugger">
|
franta-hg@27
|
734 |
<j2seproject1:nbjpdastart name="${debug.class}"/>
|
franta-hg@27
|
735 |
</target>
|
franta-hg@27
|
736 |
<target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
|
franta-hg@27
|
737 |
<j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
|
franta-hg@27
|
738 |
</target>
|
franta-hg@27
|
739 |
<target depends="init,compile" name="-debug-start-debuggee">
|
franta-hg@27
|
740 |
<j2seproject3:debug>
|
franta-hg@27
|
741 |
<customize>
|
franta-hg@27
|
742 |
<arg line="${application.args}"/>
|
franta-hg@27
|
743 |
</customize>
|
franta-hg@27
|
744 |
</j2seproject3:debug>
|
franta-hg@27
|
745 |
</target>
|
franta-hg@27
|
746 |
<target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
|
franta-hg@27
|
747 |
<target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
|
franta-hg@27
|
748 |
<j2seproject1:nbjpdastart stopclassname="${main.class}"/>
|
franta-hg@27
|
749 |
</target>
|
franta-hg@27
|
750 |
<target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
|
franta-hg@27
|
751 |
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
|
franta-hg@27
|
752 |
<fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
|
franta-hg@27
|
753 |
<j2seproject3:debug classname="${debug.class}"/>
|
franta-hg@27
|
754 |
</target>
|
franta-hg@27
|
755 |
<target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
|
franta-hg@27
|
756 |
<target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
|
franta-hg@27
|
757 |
<fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
|
franta-hg@27
|
758 |
<j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
|
franta-hg@27
|
759 |
</target>
|
franta-hg@27
|
760 |
<target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
|
franta-hg@27
|
761 |
<target depends="init" name="-pre-debug-fix">
|
franta-hg@27
|
762 |
<fail unless="fix.includes">Must set fix.includes</fail>
|
franta-hg@27
|
763 |
<property name="javac.includes" value="${fix.includes}.java"/>
|
franta-hg@27
|
764 |
</target>
|
franta-hg@27
|
765 |
<target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
|
franta-hg@27
|
766 |
<j2seproject1:nbjpdareload/>
|
franta-hg@27
|
767 |
</target>
|
franta-hg@27
|
768 |
<target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
|
franta-hg@27
|
769 |
<!--
|
franta-hg@186
|
770 |
=================
|
franta-hg@186
|
771 |
PROFILING SECTION
|
franta-hg@186
|
772 |
=================
|
franta-hg@186
|
773 |
-->
|
franta-hg@186
|
774 |
<target depends="profile-init,compile" description="Profile a project in the IDE." if="netbeans.home" name="profile">
|
franta-hg@186
|
775 |
<nbprofiledirect>
|
franta-hg@186
|
776 |
<classpath>
|
franta-hg@186
|
777 |
<path path="${run.classpath}"/>
|
franta-hg@186
|
778 |
</classpath>
|
franta-hg@186
|
779 |
</nbprofiledirect>
|
franta-hg@186
|
780 |
<profile/>
|
franta-hg@186
|
781 |
</target>
|
franta-hg@186
|
782 |
<target depends="profile-init,compile-single" description="Profile a selected class in the IDE." if="netbeans.home" name="profile-single">
|
franta-hg@186
|
783 |
<fail unless="profile.class">Must select one file in the IDE or set profile.class</fail>
|
franta-hg@186
|
784 |
<nbprofiledirect>
|
franta-hg@186
|
785 |
<classpath>
|
franta-hg@186
|
786 |
<path path="${run.classpath}"/>
|
franta-hg@186
|
787 |
</classpath>
|
franta-hg@186
|
788 |
</nbprofiledirect>
|
franta-hg@186
|
789 |
<profile classname="${profile.class}"/>
|
franta-hg@186
|
790 |
</target>
|
franta-hg@186
|
791 |
<!--
|
franta-hg@186
|
792 |
=========================
|
franta-hg@186
|
793 |
APPLET PROFILING SECTION
|
franta-hg@186
|
794 |
=========================
|
franta-hg@186
|
795 |
-->
|
franta-hg@186
|
796 |
<target depends="profile-init,compile-single" if="netbeans.home" name="profile-applet">
|
franta-hg@186
|
797 |
<nbprofiledirect>
|
franta-hg@186
|
798 |
<classpath>
|
franta-hg@186
|
799 |
<path path="${run.classpath}"/>
|
franta-hg@186
|
800 |
</classpath>
|
franta-hg@186
|
801 |
</nbprofiledirect>
|
franta-hg@186
|
802 |
<profile classname="sun.applet.AppletViewer">
|
franta-hg@186
|
803 |
<customize>
|
franta-hg@186
|
804 |
<arg value="${applet.url}"/>
|
franta-hg@186
|
805 |
</customize>
|
franta-hg@186
|
806 |
</profile>
|
franta-hg@186
|
807 |
</target>
|
franta-hg@186
|
808 |
<!--
|
franta-hg@186
|
809 |
=========================
|
franta-hg@186
|
810 |
TESTS PROFILING SECTION
|
franta-hg@186
|
811 |
=========================
|
franta-hg@186
|
812 |
-->
|
franta-hg@186
|
813 |
<target depends="profile-init,compile-test-single" if="netbeans.home" name="profile-test-single">
|
franta-hg@186
|
814 |
<nbprofiledirect>
|
franta-hg@186
|
815 |
<classpath>
|
franta-hg@186
|
816 |
<path path="${run.test.classpath}"/>
|
franta-hg@186
|
817 |
</classpath>
|
franta-hg@186
|
818 |
</nbprofiledirect>
|
franta-hg@186
|
819 |
<junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
|
franta-hg@186
|
820 |
<env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
|
franta-hg@186
|
821 |
<jvmarg value="${profiler.info.jvmargs.agent}"/>
|
franta-hg@186
|
822 |
<jvmarg line="${profiler.info.jvmargs}"/>
|
franta-hg@186
|
823 |
<test name="${profile.class}"/>
|
franta-hg@186
|
824 |
<classpath>
|
franta-hg@186
|
825 |
<path path="${run.test.classpath}"/>
|
franta-hg@186
|
826 |
</classpath>
|
franta-hg@186
|
827 |
<syspropertyset>
|
franta-hg@186
|
828 |
<propertyref prefix="test-sys-prop."/>
|
franta-hg@186
|
829 |
<mapper from="test-sys-prop.*" to="*" type="glob"/>
|
franta-hg@186
|
830 |
</syspropertyset>
|
franta-hg@186
|
831 |
<formatter type="brief" usefile="false"/>
|
franta-hg@186
|
832 |
<formatter type="xml"/>
|
franta-hg@186
|
833 |
</junit>
|
franta-hg@186
|
834 |
</target>
|
franta-hg@186
|
835 |
<!--
|
franta-hg@27
|
836 |
===============
|
franta-hg@27
|
837 |
JAVADOC SECTION
|
franta-hg@27
|
838 |
===============
|
franta-hg@27
|
839 |
-->
|
franta-hg@142
|
840 |
<target depends="init" if="have.sources" name="-javadoc-build">
|
franta-hg@27
|
841 |
<mkdir dir="${dist.javadoc.dir}"/>
|
franta-hg@27
|
842 |
<javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
|
franta-hg@27
|
843 |
<classpath>
|
franta-hg@27
|
844 |
<path path="${javac.classpath}"/>
|
franta-hg@27
|
845 |
</classpath>
|
franta-hg@27
|
846 |
<fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
|
franta-hg@27
|
847 |
<filename name="**/*.java"/>
|
franta-hg@27
|
848 |
</fileset>
|
franta-hg@27
|
849 |
<fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
|
franta-hg@27
|
850 |
<include name="**/*.java"/>
|
franta-hg@27
|
851 |
</fileset>
|
franta-hg@27
|
852 |
</javadoc>
|
franta-hg@151
|
853 |
<copy todir="${dist.javadoc.dir}">
|
franta-hg@151
|
854 |
<fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
|
franta-hg@151
|
855 |
<filename name="**/doc-files/**"/>
|
franta-hg@151
|
856 |
</fileset>
|
franta-hg@151
|
857 |
<fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
|
franta-hg@151
|
858 |
<include name="**/doc-files/**"/>
|
franta-hg@151
|
859 |
</fileset>
|
franta-hg@151
|
860 |
</copy>
|
franta-hg@27
|
861 |
</target>
|
franta-hg@27
|
862 |
<target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
|
franta-hg@27
|
863 |
<nbbrowse file="${dist.javadoc.dir}/index.html"/>
|
franta-hg@27
|
864 |
</target>
|
franta-hg@27
|
865 |
<target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
|
franta-hg@27
|
866 |
<!--
|
franta-hg@27
|
867 |
=========================
|
franta-hg@27
|
868 |
JUNIT COMPILATION SECTION
|
franta-hg@27
|
869 |
=========================
|
franta-hg@27
|
870 |
-->
|
franta-hg@27
|
871 |
<target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
|
franta-hg@27
|
872 |
<mkdir dir="${build.test.classes.dir}"/>
|
franta-hg@27
|
873 |
</target>
|
franta-hg@27
|
874 |
<target name="-pre-compile-test">
|
franta-hg@27
|
875 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
876 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
877 |
</target>
|
franta-hg@27
|
878 |
<target if="do.depend.true" name="-compile-test-depend">
|
franta-hg@27
|
879 |
<j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
|
franta-hg@27
|
880 |
</target>
|
franta-hg@186
|
881 |
<target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
|
franta-hg@142
|
882 |
<j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" processorpath="${javac.test.processorpath}" srcdir="${test.src.dir}"/>
|
franta-hg@27
|
883 |
<copy todir="${build.test.classes.dir}">
|
franta-hg@27
|
884 |
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
|
franta-hg@27
|
885 |
</copy>
|
franta-hg@27
|
886 |
</target>
|
franta-hg@27
|
887 |
<target name="-post-compile-test">
|
franta-hg@27
|
888 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
889 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
890 |
</target>
|
franta-hg@27
|
891 |
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
|
franta-hg@27
|
892 |
<target name="-pre-compile-test-single">
|
franta-hg@27
|
893 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
894 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
895 |
</target>
|
franta-hg@186
|
896 |
<target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
|
franta-hg@27
|
897 |
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
|
franta-hg@27
|
898 |
<j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
|
franta-hg@142
|
899 |
<j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}" processorpath="${javac.test.processorpath}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}"/>
|
franta-hg@27
|
900 |
<copy todir="${build.test.classes.dir}">
|
franta-hg@27
|
901 |
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
|
franta-hg@27
|
902 |
</copy>
|
franta-hg@27
|
903 |
</target>
|
franta-hg@27
|
904 |
<target name="-post-compile-test-single">
|
franta-hg@27
|
905 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
906 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
907 |
</target>
|
franta-hg@27
|
908 |
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
|
franta-hg@27
|
909 |
<!--
|
franta-hg@27
|
910 |
=======================
|
franta-hg@27
|
911 |
JUNIT EXECUTION SECTION
|
franta-hg@27
|
912 |
=======================
|
franta-hg@27
|
913 |
-->
|
franta-hg@27
|
914 |
<target depends="init" if="have.tests" name="-pre-test-run">
|
franta-hg@27
|
915 |
<mkdir dir="${build.test.results.dir}"/>
|
franta-hg@27
|
916 |
</target>
|
franta-hg@27
|
917 |
<target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
|
franta-hg@27
|
918 |
<j2seproject3:junit testincludes="**/*Test.java"/>
|
franta-hg@27
|
919 |
</target>
|
franta-hg@27
|
920 |
<target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
|
franta-hg@27
|
921 |
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
|
franta-hg@27
|
922 |
</target>
|
franta-hg@27
|
923 |
<target depends="init" if="have.tests" name="test-report"/>
|
franta-hg@27
|
924 |
<target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
|
franta-hg@27
|
925 |
<target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
|
franta-hg@27
|
926 |
<target depends="init" if="have.tests" name="-pre-test-run-single">
|
franta-hg@27
|
927 |
<mkdir dir="${build.test.results.dir}"/>
|
franta-hg@27
|
928 |
</target>
|
franta-hg@27
|
929 |
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
|
franta-hg@27
|
930 |
<fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
|
franta-hg@27
|
931 |
<j2seproject3:junit excludes="" includes="${test.includes}"/>
|
franta-hg@27
|
932 |
</target>
|
franta-hg@27
|
933 |
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
|
franta-hg@27
|
934 |
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
|
franta-hg@27
|
935 |
</target>
|
franta-hg@27
|
936 |
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
|
franta-hg@27
|
937 |
<!--
|
franta-hg@27
|
938 |
=======================
|
franta-hg@27
|
939 |
JUNIT DEBUGGING SECTION
|
franta-hg@27
|
940 |
=======================
|
franta-hg@27
|
941 |
-->
|
franta-hg@27
|
942 |
<target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
|
franta-hg@27
|
943 |
<fail unless="test.class">Must select one file in the IDE or set test.class</fail>
|
franta-hg@27
|
944 |
<property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
|
franta-hg@27
|
945 |
<delete file="${test.report.file}"/>
|
franta-hg@27
|
946 |
<mkdir dir="${build.test.results.dir}"/>
|
franta-hg@27
|
947 |
<j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}">
|
franta-hg@27
|
948 |
<customize>
|
franta-hg@27
|
949 |
<syspropertyset>
|
franta-hg@27
|
950 |
<propertyref prefix="test-sys-prop."/>
|
franta-hg@27
|
951 |
<mapper from="test-sys-prop.*" to="*" type="glob"/>
|
franta-hg@27
|
952 |
</syspropertyset>
|
franta-hg@27
|
953 |
<arg value="${test.class}"/>
|
franta-hg@27
|
954 |
<arg value="showoutput=true"/>
|
franta-hg@27
|
955 |
<arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
|
franta-hg@27
|
956 |
<arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
|
franta-hg@27
|
957 |
</customize>
|
franta-hg@27
|
958 |
</j2seproject3:debug>
|
franta-hg@27
|
959 |
</target>
|
franta-hg@27
|
960 |
<target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
|
franta-hg@27
|
961 |
<j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
|
franta-hg@27
|
962 |
</target>
|
franta-hg@27
|
963 |
<target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
|
franta-hg@27
|
964 |
<target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
|
franta-hg@27
|
965 |
<j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
|
franta-hg@27
|
966 |
</target>
|
franta-hg@27
|
967 |
<target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
|
franta-hg@27
|
968 |
<!--
|
franta-hg@27
|
969 |
=========================
|
franta-hg@27
|
970 |
APPLET EXECUTION SECTION
|
franta-hg@27
|
971 |
=========================
|
franta-hg@27
|
972 |
-->
|
franta-hg@27
|
973 |
<target depends="init,compile-single" name="run-applet">
|
franta-hg@27
|
974 |
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
|
franta-hg@27
|
975 |
<j2seproject1:java classname="sun.applet.AppletViewer">
|
franta-hg@27
|
976 |
<customize>
|
franta-hg@27
|
977 |
<arg value="${applet.url}"/>
|
franta-hg@27
|
978 |
</customize>
|
franta-hg@27
|
979 |
</j2seproject1:java>
|
franta-hg@27
|
980 |
</target>
|
franta-hg@27
|
981 |
<!--
|
franta-hg@27
|
982 |
=========================
|
franta-hg@27
|
983 |
APPLET DEBUGGING SECTION
|
franta-hg@27
|
984 |
=========================
|
franta-hg@27
|
985 |
-->
|
franta-hg@27
|
986 |
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
|
franta-hg@27
|
987 |
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
|
franta-hg@27
|
988 |
<j2seproject3:debug classname="sun.applet.AppletViewer">
|
franta-hg@27
|
989 |
<customize>
|
franta-hg@27
|
990 |
<arg value="${applet.url}"/>
|
franta-hg@27
|
991 |
</customize>
|
franta-hg@27
|
992 |
</j2seproject3:debug>
|
franta-hg@27
|
993 |
</target>
|
franta-hg@27
|
994 |
<target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
|
franta-hg@27
|
995 |
<!--
|
franta-hg@27
|
996 |
===============
|
franta-hg@27
|
997 |
CLEANUP SECTION
|
franta-hg@27
|
998 |
===============
|
franta-hg@27
|
999 |
-->
|
franta-hg@27
|
1000 |
<target name="-deps-clean-init" unless="built-clean.properties">
|
franta-hg@27
|
1001 |
<property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
|
franta-hg@27
|
1002 |
<delete file="${built-clean.properties}" quiet="true"/>
|
franta-hg@27
|
1003 |
</target>
|
franta-hg@27
|
1004 |
<target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
|
franta-hg@27
|
1005 |
<echo level="warn" message="Cycle detected: nekurak.net-lib was already built"/>
|
franta-hg@27
|
1006 |
</target>
|
franta-hg@27
|
1007 |
<target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
|
franta-hg@27
|
1008 |
<mkdir dir="${build.dir}"/>
|
franta-hg@27
|
1009 |
<touch file="${built-clean.properties}" verbose="false"/>
|
franta-hg@27
|
1010 |
<property file="${built-clean.properties}" prefix="already.built.clean."/>
|
franta-hg@27
|
1011 |
<antcall target="-warn-already-built-clean"/>
|
franta-hg@27
|
1012 |
<propertyfile file="${built-clean.properties}">
|
franta-hg@27
|
1013 |
<entry key="${basedir}" value=""/>
|
franta-hg@27
|
1014 |
</propertyfile>
|
franta-hg@27
|
1015 |
</target>
|
franta-hg@27
|
1016 |
<target depends="init" name="-do-clean">
|
franta-hg@27
|
1017 |
<delete dir="${build.dir}"/>
|
franta-hg@27
|
1018 |
<delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
|
franta-hg@27
|
1019 |
</target>
|
franta-hg@27
|
1020 |
<target name="-post-clean">
|
franta-hg@27
|
1021 |
<!-- Empty placeholder for easier customization. -->
|
franta-hg@27
|
1022 |
<!-- You can override this target in the ../build.xml file. -->
|
franta-hg@27
|
1023 |
</target>
|
franta-hg@27
|
1024 |
<target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
|
franta-hg@27
|
1025 |
<target name="-check-call-dep">
|
franta-hg@27
|
1026 |
<property file="${call.built.properties}" prefix="already.built."/>
|
franta-hg@27
|
1027 |
<condition property="should.call.dep">
|
franta-hg@27
|
1028 |
<not>
|
franta-hg@27
|
1029 |
<isset property="already.built.${call.subproject}"/>
|
franta-hg@27
|
1030 |
</not>
|
franta-hg@27
|
1031 |
</condition>
|
franta-hg@27
|
1032 |
</target>
|
franta-hg@27
|
1033 |
<target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
|
franta-hg@27
|
1034 |
<ant antfile="${call.script}" inheritall="false" target="${call.target}">
|
franta-hg@27
|
1035 |
<propertyset>
|
franta-hg@27
|
1036 |
<propertyref prefix="transfer."/>
|
franta-hg@27
|
1037 |
<mapper from="transfer.*" to="*" type="glob"/>
|
franta-hg@27
|
1038 |
</propertyset>
|
franta-hg@27
|
1039 |
</ant>
|
franta-hg@27
|
1040 |
</target>
|
franta-hg@27
|
1041 |
</project>
|