Warning: Can't use blame annotator:
svn blame failed on trunk/IDE_metadata/NetBeans/TMCSim/nbproject/build-impl.xml: ("Can't find a temporary directory: Internal error", 20014)

source: tmcsimulator/trunk/IDE_metadata/NetBeans/TMCSim/nbproject/build-impl.xml @ 654

Revision 654, 77.4 KB checked in by jdalbey, 4 years ago (diff)

TrafficModelManager?.java changed timer from Swing timer to java.util.timer to avoid any potential thread locking issues.
CADServer.java moved call to traffic mgr run() until after setVisible ... fix obscure bug on laptop NetBeans.

RevLine 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3*** GENERATED FROM project.xml - DO NOT EDIT  ***
4***         EDIT ../build.xml INSTEAD         ***
5
6For the purpose of easier reading the script
7is divided into following sections:
8
9  - initialization
10  - compilation
11  - jar
12  - execution
13  - debugging
14  - javadoc
15  - test compilation
16  - test execution
17  - test debugging
18  - applet
19  - cleanup
20
21        -->
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="TMCSim-impl">
23    <fail message="Please build using Ant 1.8.0 or higher.">
24        <condition>
25            <not>
26                <antversion atleast="1.8.0"/>
27            </not>
28        </condition>
29    </fail>
30    <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
31    <!--
32                ======================
33                INITIALIZATION SECTION
34                ======================
35            -->
36    <target name="-pre-init">
37        <!-- Empty placeholder for easier customization. -->
38        <!-- You can override this target in the ../build.xml file. -->
39    </target>
40    <target depends="-pre-init" name="-init-private">
41        <property file="nbproject/private/config.properties"/>
42        <property file="nbproject/private/configs/${config}.properties"/>
43        <property file="nbproject/private/private.properties"/>
44    </target>
45    <target depends="-pre-init,-init-private" name="-init-user">
46        <property file="${user.properties.file}"/>
47        <!-- The two properties below are usually overridden -->
48        <!-- by the active platform. Just a fallback. -->
49        <property name="default.javac.source" value="1.6"/>
50        <property name="default.javac.target" value="1.6"/>
51    </target>
52    <target depends="-pre-init,-init-private,-init-user" name="-init-project">
53        <property file="nbproject/configs/${config}.properties"/>
54        <property file="nbproject/project.properties"/>
55    </target>
56    <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
57        <property name="platform.java" value="${java.home}/bin/java"/>
58        <available file="${manifest.file}" property="manifest.available"/>
59        <condition property="splashscreen.available">
60            <and>
61                <not>
62                    <equals arg1="${application.splash}" arg2="" trim="true"/>
63                </not>
64                <available file="${application.splash}"/>
65            </and>
66        </condition>
67        <condition property="main.class.available">
68            <and>
69                <isset property="main.class"/>
70                <not>
71                    <equals arg1="${main.class}" arg2="" trim="true"/>
72                </not>
73            </and>
74        </condition>
75        <condition property="profile.available">
76            <and>
77                <isset property="javac.profile"/>
78                <length length="0" string="${javac.profile}" when="greater"/>
79                <matches pattern="((1\.[89])|9)(\..*)?" string="${javac.source}"/>
80            </and>
81        </condition>
82        <condition property="do.archive">
83            <or>
84                <not>
85                    <istrue value="${jar.archive.disabled}"/>
86                </not>
87                <istrue value="${not.archive.disabled}"/>
88            </or>
89        </condition>
90        <condition property="do.mkdist">
91            <and>
92                <isset property="do.archive"/>
93                <isset property="libs.CopyLibs.classpath"/>
94                <not>
95                    <istrue value="${mkdist.disabled}"/>
96                </not>
97            </and>
98        </condition>
99        <condition property="do.archive+manifest.available">
100            <and>
101                <isset property="manifest.available"/>
102                <istrue value="${do.archive}"/>
103            </and>
104        </condition>
105        <condition property="do.archive+main.class.available">
106            <and>
107                <isset property="main.class.available"/>
108                <istrue value="${do.archive}"/>
109            </and>
110        </condition>
111        <condition property="do.archive+splashscreen.available">
112            <and>
113                <isset property="splashscreen.available"/>
114                <istrue value="${do.archive}"/>
115            </and>
116        </condition>
117        <condition property="do.archive+profile.available">
118            <and>
119                <isset property="profile.available"/>
120                <istrue value="${do.archive}"/>
121            </and>
122        </condition>
123        <condition property="have.tests">
124            <or>
125                <available file="${test.src.dir}"/>
126            </or>
127        </condition>
128        <condition property="have.sources">
129            <or>
130                <available file="${src.webapps.dir}"/>
131                <available file="${src.dir}"/>
132            </or>
133        </condition>
134        <condition property="netbeans.home+have.tests">
135            <and>
136                <isset property="netbeans.home"/>
137                <isset property="have.tests"/>
138            </and>
139        </condition>
140        <condition property="no.javadoc.preview">
141            <and>
142                <isset property="javadoc.preview"/>
143                <isfalse value="${javadoc.preview}"/>
144            </and>
145        </condition>
146        <property name="run.jvmargs" value=""/>
147        <property name="run.jvmargs.ide" value=""/>
148        <property name="javac.compilerargs" value=""/>
149        <property name="work.dir" value="${basedir}"/>
150        <condition property="no.deps">
151            <and>
152                <istrue value="${no.dependencies}"/>
153            </and>
154        </condition>
155        <property name="javac.debug" value="true"/>
156        <property name="javadoc.preview" value="true"/>
157        <property name="application.args" value=""/>
158        <property name="source.encoding" value="${file.encoding}"/>
159        <property name="runtime.encoding" value="${source.encoding}"/>
160        <property name="manifest.encoding" value="${source.encoding}"/>
161        <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
162            <and>
163                <isset property="javadoc.encoding"/>
164                <not>
165                    <equals arg1="${javadoc.encoding}" arg2=""/>
166                </not>
167            </and>
168        </condition>
169        <property name="javadoc.encoding.used" value="${source.encoding}"/>
170        <property name="includes" value="**"/>
171        <property name="excludes" value=""/>
172        <property name="do.depend" value="false"/>
173        <condition property="do.depend.true">
174            <istrue value="${do.depend}"/>
175        </condition>
176        <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
177        <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
178            <and>
179                <isset property="endorsed.classpath"/>
180                <not>
181                    <equals arg1="${endorsed.classpath}" arg2="" trim="true"/>
182                </not>
183            </and>
184        </condition>
185        <condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}">
186            <isset property="profile.available"/>
187        </condition>
188        <condition else="false" property="jdkBug6558476">
189            <and>
190                <matches pattern="1\.[56]" string="${java.specification.version}"/>
191                <not>
192                    <os family="unix"/>
193                </not>
194            </and>
195        </condition>
196        <condition else="false" property="javac.fork">
197            <or>
198                <istrue value="${jdkBug6558476}"/>
199                <istrue value="${javac.external.vm}"/>
200            </or>
201        </condition>
202        <property name="jar.index" value="false"/>
203        <property name="jar.index.metainf" value="${jar.index}"/>
204        <property name="copylibs.rebase" value="true"/>
205        <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
206        <condition property="junit.available">
207            <or>
208                <available classname="org.junit.Test" classpath="${run.test.classpath}"/>
209                <available classname="junit.framework.Test" classpath="${run.test.classpath}"/>
210            </or>
211        </condition>
212        <condition property="testng.available">
213            <available classname="org.testng.annotations.Test" classpath="${run.test.classpath}"/>
214        </condition>
215        <condition property="junit+testng.available">
216            <and>
217                <istrue value="${junit.available}"/>
218                <istrue value="${testng.available}"/>
219            </and>
220        </condition>
221        <condition else="testng" property="testng.mode" value="mixed">
222            <istrue value="${junit+testng.available}"/>
223        </condition>
224        <condition else="" property="testng.debug.mode" value="-mixed">
225            <istrue value="${junit+testng.available}"/>
226        </condition>
227        <property name="java.failonerror" value="true"/>
228    </target>
229    <target name="-post-init">
230        <!-- Empty placeholder for easier customization. -->
231        <!-- You can override this target in the ../build.xml file. -->
232    </target>
233    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
234        <fail unless="src.webapps.dir">Must set src.webapps.dir</fail>
235        <fail unless="src.dir">Must set src.dir</fail>
236        <fail unless="test.src.dir">Must set test.src.dir</fail>
237        <fail unless="build.dir">Must set build.dir</fail>
238        <fail unless="dist.dir">Must set dist.dir</fail>
239        <fail unless="build.classes.dir">Must set build.classes.dir</fail>
240        <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
241        <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
242        <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
243        <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
244        <fail unless="dist.jar">Must set dist.jar</fail>
245    </target>
246    <target name="-init-macrodef-property">
247        <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
248            <attribute name="name"/>
249            <attribute name="value"/>
250            <sequential>
251                <property name="@{name}" value="${@{value}}"/>
252            </sequential>
253        </macrodef>
254    </target>
255    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
256        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
257            <attribute default="${src.webapps.dir}:${src.dir}" name="srcdir"/>
258            <attribute default="${build.classes.dir}" name="destdir"/>
259            <attribute default="${javac.classpath}" name="classpath"/>
260            <attribute default="${javac.processorpath}" name="processorpath"/>
261            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
262            <attribute default="${includes}" name="includes"/>
263            <attribute default="${excludes}" name="excludes"/>
264            <attribute default="${javac.debug}" name="debug"/>
265            <attribute default="${empty.dir}" name="sourcepath"/>
266            <attribute default="${empty.dir}" name="gensrcdir"/>
267            <element name="customize" optional="true"/>
268            <sequential>
269                <property location="${build.dir}/empty" name="empty.dir"/>
270                <mkdir dir="${empty.dir}"/>
271                <mkdir dir="@{apgeneratedsrcdir}"/>
272                <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}">
273                    <src>
274                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
275                            <include name="*"/>
276                        </dirset>
277                    </src>
278                    <classpath>
279                        <path path="@{classpath}"/>
280                    </classpath>
281                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
282                    <compilerarg line="${javac.profile.cmd.line.arg}"/>
283                    <compilerarg line="${javac.compilerargs}"/>
284                    <compilerarg value="-processorpath"/>
285                    <compilerarg path="@{processorpath}:${empty.dir}"/>
286                    <compilerarg line="${ap.processors.internal}"/>
287                    <compilerarg line="${annotation.processing.processor.options}"/>
288                    <compilerarg value="-s"/>
289                    <compilerarg path="@{apgeneratedsrcdir}"/>
290                    <compilerarg line="${ap.proc.none.internal}"/>
291                    <customize/>
292                </javac>
293            </sequential>
294        </macrodef>
295    </target>
296    <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
297        <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
298            <attribute default="${src.webapps.dir}:${src.dir}" name="srcdir"/>
299            <attribute default="${build.classes.dir}" name="destdir"/>
300            <attribute default="${javac.classpath}" name="classpath"/>
301            <attribute default="${javac.processorpath}" name="processorpath"/>
302            <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
303            <attribute default="${includes}" name="includes"/>
304            <attribute default="${excludes}" name="excludes"/>
305            <attribute default="${javac.debug}" name="debug"/>
306            <attribute default="${empty.dir}" name="sourcepath"/>
307            <attribute default="${empty.dir}" name="gensrcdir"/>
308            <element name="customize" optional="true"/>
309            <sequential>
310                <property location="${build.dir}/empty" name="empty.dir"/>
311                <mkdir dir="${empty.dir}"/>
312                <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}">
313                    <src>
314                        <dirset dir="@{gensrcdir}" erroronmissingdir="false">
315                            <include name="*"/>
316                        </dirset>
317                    </src>
318                    <classpath>
319                        <path path="@{classpath}"/>
320                    </classpath>
321                    <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
322                    <compilerarg line="${javac.profile.cmd.line.arg}"/>
323                    <compilerarg line="${javac.compilerargs}"/>
324                    <customize/>
325                </javac>
326            </sequential>
327        </macrodef>
328    </target>
329    <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
330        <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
331            <attribute default="${src.webapps.dir}:${src.dir}" name="srcdir"/>
332            <attribute default="${build.classes.dir}" name="destdir"/>
333            <attribute default="${javac.classpath}" name="classpath"/>
334            <sequential>
335                <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
336                    <classpath>
337                        <path path="@{classpath}"/>
338                    </classpath>
339                </depend>
340            </sequential>
341        </macrodef>
342        <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
343            <attribute default="${build.classes.dir}" name="destdir"/>
344            <sequential>
345                <fail unless="javac.includes">Must set javac.includes</fail>
346                <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
347                    <path>
348                        <filelist dir="@{destdir}" files="${javac.includes}"/>
349                    </path>
350                    <globmapper from="*.java" to="*.class"/>
351                </pathconvert>
352                <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
353                <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
354                <delete>
355                    <files includesfile="${javac.includesfile.binary}"/>
356                </delete>
357                <delete>
358                    <fileset file="${javac.includesfile.binary}"/>
359                </delete>
360            </sequential>
361        </macrodef>
362    </target>
363    <target if="${junit.available}" name="-init-macrodef-junit-init">
364        <condition else="false" property="nb.junit.batch" value="true">
365            <and>
366                <istrue value="${junit.available}"/>
367                <not>
368                    <isset property="test.method"/>
369                </not>
370            </and>
371        </condition>
372        <condition else="false" property="nb.junit.single" value="true">
373            <and>
374                <istrue value="${junit.available}"/>
375                <isset property="test.method"/>
376            </and>
377        </condition>
378    </target>
379    <target name="-init-test-properties">
380        <property name="test.binaryincludes" value="&lt;nothing&gt;"/>
381        <property name="test.binarytestincludes" value=""/>
382        <property name="test.binaryexcludes" value=""/>
383    </target>
384    <target if="${nb.junit.single}" name="-init-macrodef-junit-single" unless="${nb.junit.batch}">
385        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
386            <attribute default="${includes}" name="includes"/>
387            <attribute default="${excludes}" name="excludes"/>
388            <attribute default="**" name="testincludes"/>
389            <attribute default="" name="testmethods"/>
390            <element name="customize" optional="true"/>
391            <sequential>
392                <property name="junit.forkmode" value="perTest"/>
393                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
394                    <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
395                    <syspropertyset>
396                        <propertyref prefix="test-sys-prop."/>
397                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
398                    </syspropertyset>
399                    <formatter type="brief" usefile="false"/>
400                    <formatter type="xml"/>
401                    <jvmarg value="-ea"/>
402                    <customize/>
403                </junit>
404            </sequential>
405        </macrodef>
406    </target>
407    <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-batch" unless="${nb.junit.single}">
408        <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
409            <attribute default="${includes}" name="includes"/>
410            <attribute default="${excludes}" name="excludes"/>
411            <attribute default="**" name="testincludes"/>
412            <attribute default="" name="testmethods"/>
413            <element name="customize" optional="true"/>
414            <sequential>
415                <property name="junit.forkmode" value="perTest"/>
416                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
417                    <batchtest todir="${build.test.results.dir}">
418                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
419                            <filename name="@{testincludes}"/>
420                        </fileset>
421                        <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
422                            <filename name="${test.binarytestincludes}"/>
423                        </fileset>
424                    </batchtest>
425                    <syspropertyset>
426                        <propertyref prefix="test-sys-prop."/>
427                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
428                    </syspropertyset>
429                    <formatter type="brief" usefile="false"/>
430                    <formatter type="xml"/>
431                    <jvmarg value="-ea"/>
432                    <customize/>
433                </junit>
434            </sequential>
435        </macrodef>
436    </target>
437    <target depends="-init-macrodef-junit-init,-init-macrodef-junit-single, -init-macrodef-junit-batch" if="${junit.available}" name="-init-macrodef-junit"/>
438    <target if="${testng.available}" name="-init-macrodef-testng">
439        <macrodef name="testng" uri="http://www.netbeans.org/ns/j2se-project/3">
440            <attribute default="${includes}" name="includes"/>
441            <attribute default="${excludes}" name="excludes"/>
442            <attribute default="**" name="testincludes"/>
443            <attribute default="" name="testmethods"/>
444            <element name="customize" optional="true"/>
445            <sequential>
446                <condition else="" property="testng.methods.arg" value="@{testincludes}.@{testmethods}">
447                    <isset property="test.method"/>
448                </condition>
449                <union id="test.set">
450                    <fileset dir="${test.src.dir}" excludes="@{excludes},**/*.xml,${excludes}" includes="@{includes}">
451                        <filename name="@{testincludes}"/>
452                    </fileset>
453                </union>
454                <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
455                <testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="TMCSim" testname="TestNG tests" workingDir="${work.dir}">
456                    <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
457                    <propertyset>
458                        <propertyref prefix="test-sys-prop."/>
459                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
460                    </propertyset>
461                    <customize/>
462                </testng>
463            </sequential>
464        </macrodef>
465    </target>
466    <target name="-init-macrodef-test-impl">
467        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
468            <attribute default="${includes}" name="includes"/>
469            <attribute default="${excludes}" name="excludes"/>
470            <attribute default="**" name="testincludes"/>
471            <attribute default="" name="testmethods"/>
472            <element implicit="true" name="customize" optional="true"/>
473            <sequential>
474                <echo>No tests executed.</echo>
475            </sequential>
476        </macrodef>
477    </target>
478    <target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-impl">
479        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
480            <attribute default="${includes}" name="includes"/>
481            <attribute default="${excludes}" name="excludes"/>
482            <attribute default="**" name="testincludes"/>
483            <attribute default="" name="testmethods"/>
484            <element implicit="true" name="customize" optional="true"/>
485            <sequential>
486                <j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
487                    <customize/>
488                </j2seproject3:junit>
489            </sequential>
490        </macrodef>
491    </target>
492    <target depends="-init-macrodef-testng" if="${testng.available}" name="-init-macrodef-testng-impl">
493        <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
494            <attribute default="${includes}" name="includes"/>
495            <attribute default="${excludes}" name="excludes"/>
496            <attribute default="**" name="testincludes"/>
497            <attribute default="" name="testmethods"/>
498            <element implicit="true" name="customize" optional="true"/>
499            <sequential>
500                <j2seproject3:testng excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
501                    <customize/>
502                </j2seproject3:testng>
503            </sequential>
504        </macrodef>
505    </target>
506    <target depends="-init-macrodef-test-impl,-init-macrodef-junit-impl,-init-macrodef-testng-impl" name="-init-macrodef-test">
507        <macrodef name="test" uri="http://www.netbeans.org/ns/j2se-project/3">
508            <attribute default="${includes}" name="includes"/>
509            <attribute default="${excludes}" name="excludes"/>
510            <attribute default="**" name="testincludes"/>
511            <attribute default="" name="testmethods"/>
512            <sequential>
513                <j2seproject3:test-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
514                    <customize>
515                        <classpath>
516                            <path path="${run.test.classpath}"/>
517                        </classpath>
518                        <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
519                        <jvmarg line="${run.jvmargs}"/>
520                        <jvmarg line="${run.jvmargs.ide}"/>
521                    </customize>
522                </j2seproject3:test-impl>
523            </sequential>
524        </macrodef>
525    </target>
526    <target if="${junit.available}" name="-init-macrodef-junit-debug" unless="${nb.junit.batch}">
527        <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
528            <attribute default="${includes}" name="includes"/>
529            <attribute default="${excludes}" name="excludes"/>
530            <attribute default="**" name="testincludes"/>
531            <attribute default="" name="testmethods"/>
532            <element name="customize" optional="true"/>
533            <sequential>
534                <property name="junit.forkmode" value="perTest"/>
535                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
536                    <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
537                    <syspropertyset>
538                        <propertyref prefix="test-sys-prop."/>
539                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
540                    </syspropertyset>
541                    <formatter type="brief" usefile="false"/>
542                    <formatter type="xml"/>
543                    <jvmarg value="-ea"/>
544                    <jvmarg line="${debug-args-line}"/>
545                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
546                    <customize/>
547                </junit>
548            </sequential>
549        </macrodef>
550    </target>
551    <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-debug-batch">
552        <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
553            <attribute default="${includes}" name="includes"/>
554            <attribute default="${excludes}" name="excludes"/>
555            <attribute default="**" name="testincludes"/>
556            <attribute default="" name="testmethods"/>
557            <element name="customize" optional="true"/>
558            <sequential>
559                <property name="junit.forkmode" value="perTest"/>
560                <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
561                    <batchtest todir="${build.test.results.dir}">
562                        <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
563                            <filename name="@{testincludes}"/>
564                        </fileset>
565                        <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
566                            <filename name="${test.binarytestincludes}"/>
567                        </fileset>
568                    </batchtest>
569                    <syspropertyset>
570                        <propertyref prefix="test-sys-prop."/>
571                        <mapper from="test-sys-prop.*" to="*" type="glob"/>
572                    </syspropertyset>
573                    <formatter type="brief" usefile="false"/>
574                    <formatter type="xml"/>
575                    <jvmarg value="-ea"/>
576                    <jvmarg line="${debug-args-line}"/>
577                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
578                    <customize/>
579                </junit>
580            </sequential>
581        </macrodef>
582    </target>
583    <target depends="-init-macrodef-junit-debug,-init-macrodef-junit-debug-batch" if="${junit.available}" name="-init-macrodef-junit-debug-impl">
584        <macrodef name="test-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
585            <attribute default="${includes}" name="includes"/>
586            <attribute default="${excludes}" name="excludes"/>
587            <attribute default="**" name="testincludes"/>
588            <attribute default="" name="testmethods"/>
589            <element implicit="true" name="customize" optional="true"/>
590            <sequential>
591                <j2seproject3:junit-debug excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
592                    <customize/>
593                </j2seproject3:junit-debug>
594            </sequential>
595        </macrodef>
596    </target>
597    <target if="${testng.available}" name="-init-macrodef-testng-debug">
598        <macrodef name="testng-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
599            <attribute default="${main.class}" name="testClass"/>
600            <attribute default="" name="testMethod"/>
601            <element name="customize2" optional="true"/>
602            <sequential>
603                <condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
604                    <isset property="test.method"/>
605                </condition>
606                <condition else="-suitename TMCSim -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
607                    <matches pattern=".*\.xml" string="@{testClass}"/>
608                </condition>
609                <delete dir="${build.test.results.dir}" quiet="true"/>
610                <mkdir dir="${build.test.results.dir}"/>
611                <j2seproject3:debug classname="org.testng.TestNG" classpath="${debug.test.classpath}">
612                    <customize>
613                        <customize2/>
614                        <jvmarg value="-ea"/>
615                        <arg line="${testng.debug.mode}"/>
616                        <arg line="-d ${build.test.results.dir}"/>
617                        <arg line="-listener org.testng.reporters.VerboseReporter"/>
618                        <arg line="${testng.cmd.args}"/>
619                    </customize>
620                </j2seproject3:debug>
621            </sequential>
622        </macrodef>
623    </target>
624    <target depends="-init-macrodef-testng-debug" if="${testng.available}" name="-init-macrodef-testng-debug-impl">
625        <macrodef name="testng-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
626            <attribute default="${main.class}" name="testClass"/>
627            <attribute default="" name="testMethod"/>
628            <element implicit="true" name="customize2" optional="true"/>
629            <sequential>
630                <j2seproject3:testng-debug testClass="@{testClass}" testMethod="@{testMethod}">
631                    <customize2/>
632                </j2seproject3:testng-debug>
633            </sequential>
634        </macrodef>
635    </target>
636    <target depends="-init-macrodef-junit-debug-impl" if="${junit.available}" name="-init-macrodef-test-debug-junit">
637        <macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
638            <attribute default="${includes}" name="includes"/>
639            <attribute default="${excludes}" name="excludes"/>
640            <attribute default="**" name="testincludes"/>
641            <attribute default="" name="testmethods"/>
642            <attribute default="${main.class}" name="testClass"/>
643            <attribute default="" name="testMethod"/>
644            <sequential>
645                <j2seproject3:test-debug-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
646                    <customize>
647                        <classpath>
648                            <path path="${run.test.classpath}"/>
649                        </classpath>
650                        <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
651                        <jvmarg line="${run.jvmargs}"/>
652                        <jvmarg line="${run.jvmargs.ide}"/>
653                    </customize>
654                </j2seproject3:test-debug-impl>
655            </sequential>
656        </macrodef>
657    </target>
658    <target depends="-init-macrodef-testng-debug-impl" if="${testng.available}" name="-init-macrodef-test-debug-testng">
659        <macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
660            <attribute default="${includes}" name="includes"/>
661            <attribute default="${excludes}" name="excludes"/>
662            <attribute default="**" name="testincludes"/>
663            <attribute default="" name="testmethods"/>
664            <attribute default="${main.class}" name="testClass"/>
665            <attribute default="" name="testMethod"/>
666            <sequential>
667                <j2seproject3:testng-debug-impl testClass="@{testClass}" testMethod="@{testMethod}">
668                    <customize2>
669                        <syspropertyset>
670                            <propertyref prefix="test-sys-prop."/>
671                            <mapper from="test-sys-prop.*" to="*" type="glob"/>
672                        </syspropertyset>
673                    </customize2>
674                </j2seproject3:testng-debug-impl>
675            </sequential>
676        </macrodef>
677    </target>
678    <target depends="-init-macrodef-test-debug-junit,-init-macrodef-test-debug-testng" name="-init-macrodef-test-debug"/>
679    <!--
680                pre NB7.2 profiling section; consider it deprecated
681            -->
682    <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" if="profiler.info.jvmargs.agent" name="profile-init"/>
683    <target if="profiler.info.jvmargs.agent" name="-profile-pre-init">
684        <!-- Empty placeholder for easier customization. -->
685        <!-- You can override this target in the ../build.xml file. -->
686    </target>
687    <target if="profiler.info.jvmargs.agent" name="-profile-post-init">
688        <!-- Empty placeholder for easier customization. -->
689        <!-- You can override this target in the ../build.xml file. -->
690    </target>
691    <target if="profiler.info.jvmargs.agent" name="-profile-init-macrodef-profile">
692        <macrodef name="resolve">
693            <attribute name="name"/>
694            <attribute name="value"/>
695            <sequential>
696                <property name="@{name}" value="${env.@{value}}"/>
697            </sequential>
698        </macrodef>
699        <macrodef name="profile">
700            <attribute default="${main.class}" name="classname"/>
701            <element name="customize" optional="true"/>
702            <sequential>
703                <property environment="env"/>
704                <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
705                <java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}">
706                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
707                    <jvmarg value="${profiler.info.jvmargs.agent}"/>
708                    <jvmarg line="${profiler.info.jvmargs}"/>
709                    <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
710                    <arg line="${application.args}"/>
711                    <classpath>
712                        <path path="${run.classpath}"/>
713                    </classpath>
714                    <syspropertyset>
715                        <propertyref prefix="run-sys-prop."/>
716                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
717                    </syspropertyset>
718                    <customize/>
719                </java>
720            </sequential>
721        </macrodef>
722    </target>
723    <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" if="profiler.info.jvmargs.agent" name="-profile-init-check">
724        <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
725        <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
726    </target>
727    <!--
728                end of pre NB7.2 profiling section
729            -->
730    <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
731        <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
732            <attribute default="${main.class}" name="name"/>
733            <attribute default="${debug.classpath}" name="classpath"/>
734            <attribute default="" name="stopclassname"/>
735            <sequential>
736                <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
737                    <classpath>
738                        <path path="@{classpath}"/>
739                    </classpath>
740                </nbjpdastart>
741            </sequential>
742        </macrodef>
743        <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
744            <attribute default="${build.classes.dir}" name="dir"/>
745            <sequential>
746                <nbjpdareload>
747                    <fileset dir="@{dir}" includes="${fix.classes}">
748                        <include name="${fix.includes}*.class"/>
749                    </fileset>
750                </nbjpdareload>
751            </sequential>
752        </macrodef>
753    </target>
754    <target name="-init-debug-args">
755        <property name="version-output" value="java version &quot;${ant.java.version}"/>
756        <condition property="have-jdk-older-than-1.4">
757            <or>
758                <contains string="${version-output}" substring="java version &quot;1.0"/>
759                <contains string="${version-output}" substring="java version &quot;1.1"/>
760                <contains string="${version-output}" substring="java version &quot;1.2"/>
761                <contains string="${version-output}" substring="java version &quot;1.3"/>
762            </or>
763        </condition>
764        <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
765            <istrue value="${have-jdk-older-than-1.4}"/>
766        </condition>
767        <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
768            <os family="windows"/>
769        </condition>
770        <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
771            <isset property="debug.transport"/>
772        </condition>
773    </target>
774    <target depends="-init-debug-args" name="-init-macrodef-debug">
775        <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
776            <attribute default="${main.class}" name="classname"/>
777            <attribute default="${debug.classpath}" name="classpath"/>
778            <element name="customize" optional="true"/>
779            <sequential>
780                <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
781                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
782                    <jvmarg line="${debug-args-line}"/>
783                    <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
784                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
785                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
786                    <jvmarg line="${run.jvmargs}"/>
787                    <jvmarg line="${run.jvmargs.ide}"/>
788                    <classpath>
789                        <path path="@{classpath}"/>
790                    </classpath>
791                    <syspropertyset>
792                        <propertyref prefix="run-sys-prop."/>
793                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
794                    </syspropertyset>
795                    <customize/>
796                </java>
797            </sequential>
798        </macrodef>
799    </target>
800    <target name="-init-macrodef-java">
801        <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
802            <attribute default="${main.class}" name="classname"/>
803            <attribute default="${run.classpath}" name="classpath"/>
804            <attribute default="jvm" name="jvm"/>
805            <element name="customize" optional="true"/>
806            <sequential>
807                <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
808                    <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
809                    <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
810                    <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
811                    <jvmarg line="${run.jvmargs}"/>
812                    <jvmarg line="${run.jvmargs.ide}"/>
813                    <classpath>
814                        <path path="@{classpath}"/>
815                    </classpath>
816                    <syspropertyset>
817                        <propertyref prefix="run-sys-prop."/>
818                        <mapper from="run-sys-prop.*" to="*" type="glob"/>
819                    </syspropertyset>
820                    <customize/>
821                </java>
822            </sequential>
823        </macrodef>
824    </target>
825    <target name="-init-macrodef-copylibs">
826        <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
827            <attribute default="${manifest.file}" name="manifest"/>
828            <element name="customize" optional="true"/>
829            <sequential>
830                <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
831                <pathconvert property="run.classpath.without.build.classes.dir">
832                    <path path="${run.classpath}"/>
833                    <map from="${build.classes.dir.resolved}" to=""/>
834                </pathconvert>
835                <pathconvert pathsep=" " property="jar.classpath">
836                    <path path="${run.classpath.without.build.classes.dir}"/>
837                    <chainedmapper>
838                        <flattenmapper/>
839                        <filtermapper>
840                            <replacestring from=" " to="%20"/>
841                        </filtermapper>
842                        <globmapper from="*" to="lib/*"/>
843                    </chainedmapper>
844                </pathconvert>
845                <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
846                <copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" manifestencoding="UTF-8" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
847                    <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
848                    <manifest>
849                        <attribute name="Class-Path" value="${jar.classpath}"/>
850                        <customize/>
851                    </manifest>
852                </copylibs>
853            </sequential>
854        </macrodef>
855    </target>
856    <target name="-init-presetdef-jar">
857        <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
858            <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifestencoding="UTF-8">
859                <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
860            </jar>
861        </presetdef>
862    </target>
863    <target name="-init-ap-cmdline-properties">
864        <property name="annotation.processing.enabled" value="true"/>
865        <property name="annotation.processing.processors.list" value=""/>
866        <property name="annotation.processing.processor.options" value=""/>
867        <property name="annotation.processing.run.all.processors" value="true"/>
868        <property name="javac.processorpath" value="${javac.classpath}"/>
869        <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
870        <condition property="ap.supported.internal" value="true">
871            <not>
872                <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
873            </not>
874        </condition>
875    </target>
876    <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
877        <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
878            <isfalse value="${annotation.processing.run.all.processors}"/>
879        </condition>
880        <condition else="" property="ap.proc.none.internal" value="-proc:none">
881            <isfalse value="${annotation.processing.enabled}"/>
882        </condition>
883    </target>
884    <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
885        <property name="ap.cmd.line.internal" value=""/>
886    </target>
887    <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-test,-init-macrodef-test-debug,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
888    <!--
889                ===================
890                COMPILATION SECTION
891                ===================
892            -->
893    <target name="-deps-jar-init" unless="built-jar.properties">
894        <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
895        <delete file="${built-jar.properties}" quiet="true"/>
896    </target>
897    <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
898        <echo level="warn" message="Cycle detected: TMCSim was already built"/>
899    </target>
900    <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
901        <mkdir dir="${build.dir}"/>
902        <touch file="${built-jar.properties}" verbose="false"/>
903        <property file="${built-jar.properties}" prefix="already.built.jar."/>
904        <antcall target="-warn-already-built-jar"/>
905        <propertyfile file="${built-jar.properties}">
906            <entry key="${basedir}" value=""/>
907        </propertyfile>
908    </target>
909    <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
910    <target depends="init" name="-check-automatic-build">
911        <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
912    </target>
913    <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
914        <antcall target="clean"/>
915    </target>
916    <target depends="init,deps-jar" name="-pre-pre-compile">
917        <mkdir dir="${build.classes.dir}"/>
918    </target>
919    <target name="-pre-compile">
920        <!-- Empty placeholder for easier customization. -->
921        <!-- You can override this target in the ../build.xml file. -->
922    </target>
923    <target if="do.depend.true" name="-compile-depend">
924        <pathconvert property="build.generated.subdirs">
925            <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
926                <include name="*"/>
927            </dirset>
928        </pathconvert>
929        <j2seproject3:depend srcdir="${src.webapps.dir}:${src.dir}:${build.generated.subdirs}"/>
930    </target>
931    <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
932        <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
933        <copy todir="${build.classes.dir}">
934            <fileset dir="${src.webapps.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
935            <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
936        </copy>
937    </target>
938    <target if="has.persistence.xml" name="-copy-persistence-xml">
939        <mkdir dir="${build.classes.dir}/META-INF"/>
940        <copy todir="${build.classes.dir}/META-INF">
941            <fileset dir="${meta.inf.dir}" includes="persistence.xml orm.xml"/>
942        </copy>
943    </target>
944    <target name="-post-compile">
945        <!-- Empty placeholder for easier customization. -->
946        <!-- You can override this target in the ../build.xml file. -->
947    </target>
948    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
949    <target name="-pre-compile-single">
950        <!-- Empty placeholder for easier customization. -->
951        <!-- You can override this target in the ../build.xml file. -->
952    </target>
953    <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
954        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
955        <j2seproject3:force-recompile/>
956        <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.webapps.dir}:${src.dir}"/>
957    </target>
958    <target name="-post-compile-single">
959        <!-- Empty placeholder for easier customization. -->
960        <!-- You can override this target in the ../build.xml file. -->
961    </target>
962    <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
963    <!--
964                ====================
965                JAR BUILDING SECTION
966                ====================
967            -->
968    <target depends="init" name="-pre-pre-jar">
969        <dirname file="${dist.jar}" property="dist.jar.dir"/>
970        <mkdir dir="${dist.jar.dir}"/>
971    </target>
972    <target name="-pre-jar">
973        <!-- Empty placeholder for easier customization. -->
974        <!-- You can override this target in the ../build.xml file. -->
975    </target>
976    <target depends="init" if="do.archive" name="-do-jar-create-manifest" unless="manifest.available">
977        <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
978        <touch file="${tmp.manifest.file}" verbose="false"/>
979    </target>
980    <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest">
981        <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
982        <copy encoding="${manifest.encoding}" file="${manifest.file}" outputencoding="UTF-8" tofile="${tmp.manifest.file}"/>
983    </target>
984    <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass">
985        <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
986            <attribute name="Main-Class" value="${main.class}"/>
987        </manifest>
988    </target>
989    <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile">
990        <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
991            <attribute name="Profile" value="${javac.profile}"/>
992        </manifest>
993    </target>
994    <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen">
995        <basename file="${application.splash}" property="splashscreen.basename"/>
996        <mkdir dir="${build.classes.dir}/META-INF"/>
997        <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
998        <manifest encoding="UTF-8" file="${tmp.manifest.file}" mode="update">
999            <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
1000        </manifest>
1001    </target>
1002    <target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.mkdist" name="-do-jar-copylibs">
1003        <j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
1004        <echo level="info">To run this application from the command line without Ant, try:</echo>
1005        <property location="${dist.jar}" name="dist.jar.resolved"/>
1006        <echo level="info">java -jar "${dist.jar.resolved}"</echo>
1007    </target>
1008    <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
1009        <j2seproject1:jar manifest="${tmp.manifest.file}"/>
1010        <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
1011        <property location="${dist.jar}" name="dist.jar.resolved"/>
1012        <pathconvert property="run.classpath.with.dist.jar">
1013            <path path="${run.classpath}"/>
1014            <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
1015        </pathconvert>
1016        <condition else="" property="jar.usage.message" value="To run this application from the command line without Ant, try:${line.separator}${platform.java} -cp ${run.classpath.with.dist.jar} ${main.class}">
1017            <isset property="main.class.available"/>
1018        </condition>
1019        <condition else="debug" property="jar.usage.level" value="info">
1020            <isset property="main.class.available"/>
1021        </condition>
1022        <echo level="${jar.usage.level}" message="${jar.usage.message}"/>
1023    </target>
1024    <target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest">
1025        <delete>
1026            <fileset file="${tmp.manifest.file}"/>
1027        </delete>
1028    </target>
1029    <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-jar,-do-jar-delete-manifest" name="-do-jar-without-libraries"/>
1030    <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-copylibs,-do-jar-delete-manifest" name="-do-jar-with-libraries"/>
1031    <target name="-post-jar">
1032        <!-- Empty placeholder for easier customization. -->
1033        <!-- You can override this target in the ../build.xml file. -->
1034    </target>
1035    <target depends="init,compile,-pre-jar,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/>
1036    <!--When you do "Clean and Build" I think it does this jar target, and sets as the main file in the manifest
1037        whichever project configuration is current. -->
1038    <target depends="init,compile,-pre-jar,-do-jar,-post-jar" description="Build JAR." name="jar"/>
1039    <!--
1040                =================
1041                EXECUTION SECTION
1042                =================
1043            -->
1044    <target depends="init,compile" description="Run a main class." name="run">
1045        <j2seproject1:java>
1046            <customize>
1047                <arg line="${application.args}"/>
1048            </customize>
1049        </j2seproject1:java>
1050    </target>
1051    <target name="-do-not-recompile">
1052        <property name="javac.includes.binary" value=""/>
1053    </target>
1054    <target depends="init,compile-single" name="run-single">
1055        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1056        <j2seproject1:java classname="${run.class}"/>
1057    </target>
1058    <target depends="init,compile-test-single" name="run-test-with-main">
1059        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1060        <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
1061    </target>
1062    <!--
1063                =================
1064                DEBUGGING SECTION
1065                =================
1066            -->
1067    <target depends="init" if="netbeans.home" name="-debug-start-debugger">
1068        <j2seproject1:nbjpdastart name="${debug.class}"/>
1069    </target>
1070    <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
1071        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
1072    </target>
1073    <target depends="init,compile" name="-debug-start-debuggee">
1074        <j2seproject3:debug>
1075            <customize>
1076                <arg line="${application.args}"/>
1077            </customize>
1078        </j2seproject3:debug>
1079    </target>
1080    <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
1081    <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
1082        <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
1083    </target>
1084    <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
1085    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
1086        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
1087        <j2seproject3:debug classname="${debug.class}"/>
1088    </target>
1089    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
1090    <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
1091        <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
1092        <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
1093    </target>
1094    <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
1095    <target depends="init" name="-pre-debug-fix">
1096        <fail unless="fix.includes">Must set fix.includes</fail>
1097        <property name="javac.includes" value="${fix.includes}.java"/>
1098    </target>
1099    <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
1100        <j2seproject1:nbjpdareload/>
1101    </target>
1102    <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
1103    <!--
1104                =================
1105                PROFILING SECTION
1106                =================
1107            -->
1108    <!--
1109                pre NB7.2 profiler integration
1110            -->
1111    <target depends="profile-init,compile" description="Profile a project in the IDE." if="profiler.info.jvmargs.agent" name="-profile-pre72">
1112        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1113        <nbprofiledirect>
1114            <classpath>
1115                <path path="${run.classpath}"/>
1116            </classpath>
1117        </nbprofiledirect>
1118        <profile/>
1119    </target>
1120    <target depends="profile-init,compile-single" description="Profile a selected class in the IDE." if="profiler.info.jvmargs.agent" name="-profile-single-pre72">
1121        <fail unless="profile.class">Must select one file in the IDE or set profile.class</fail>
1122        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1123        <nbprofiledirect>
1124            <classpath>
1125                <path path="${run.classpath}"/>
1126            </classpath>
1127        </nbprofiledirect>
1128        <profile classname="${profile.class}"/>
1129    </target>
1130    <target depends="profile-init,compile-single" if="profiler.info.jvmargs.agent" name="-profile-applet-pre72">
1131        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1132        <nbprofiledirect>
1133            <classpath>
1134                <path path="${run.classpath}"/>
1135            </classpath>
1136        </nbprofiledirect>
1137        <profile classname="sun.applet.AppletViewer">
1138            <customize>
1139                <arg value="${applet.url}"/>
1140            </customize>
1141        </profile>
1142    </target>
1143    <target depends="profile-init,compile-test-single" if="profiler.info.jvmargs.agent" name="-profile-test-single-pre72">
1144        <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1145        <nbprofiledirect>
1146            <classpath>
1147                <path path="${run.test.classpath}"/>
1148            </classpath>
1149        </nbprofiledirect>
1150        <junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
1151            <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
1152            <jvmarg value="${profiler.info.jvmargs.agent}"/>
1153            <jvmarg line="${profiler.info.jvmargs}"/>
1154            <test name="${profile.class}"/>
1155            <classpath>
1156                <path path="${run.test.classpath}"/>
1157            </classpath>
1158            <syspropertyset>
1159                <propertyref prefix="test-sys-prop."/>
1160                <mapper from="test-sys-prop.*" to="*" type="glob"/>
1161            </syspropertyset>
1162            <formatter type="brief" usefile="false"/>
1163            <formatter type="xml"/>
1164        </junit>
1165    </target>
1166    <!--
1167                end of pre NB72 profiling section
1168            -->
1169    <target if="netbeans.home" name="-profile-check">
1170        <condition property="profiler.configured">
1171            <or>
1172                <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-agentpath:"/>
1173                <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-javaagent:"/>
1174            </or>
1175        </condition>
1176    </target>
1177    <target depends="-profile-check,-profile-pre72" description="Profile a project in the IDE." if="profiler.configured" name="profile" unless="profiler.info.jvmargs.agent">
1178        <startprofiler/>
1179        <antcall target="run"/>
1180    </target>
1181    <target depends="-profile-check,-profile-single-pre72" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-single" unless="profiler.info.jvmargs.agent">
1182        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1183        <startprofiler/>
1184        <antcall target="run-single"/>
1185    </target>
1186    <target depends="-profile-test-single-pre72" description="Profile a selected test in the IDE." name="profile-test-single"/>
1187    <target depends="-profile-check" description="Profile a selected test in the IDE." if="profiler.configured" name="profile-test" unless="profiler.info.jvmargs">
1188        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
1189        <startprofiler/>
1190        <antcall target="test-single"/>
1191    </target>
1192    <target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
1193        <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1194        <startprofiler/>
1195        <antcall target="run-test-with-main"/>
1196    </target>
1197    <target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
1198        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
1199        <startprofiler/>
1200        <antcall target="run-applet"/>
1201    </target>
1202    <!--
1203                ===============
1204                JAVADOC SECTION
1205                ===============
1206            -->
1207    <target depends="init" if="have.sources" name="-javadoc-build">
1208        <mkdir dir="${dist.javadoc.dir}"/>
1209        <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}">
1210            <and>
1211                <isset property="endorsed.classpath.cmd.line.arg"/>
1212                <not>
1213                    <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/>
1214                </not>
1215            </and>
1216        </condition>
1217        <condition else="" property="bug5101868workaround" value="*.java">
1218            <matches pattern="1\.[56](\..*)?" string="${java.version}"/>
1219        </condition>
1220        <javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${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}">
1221            <classpath>
1222                <path path="${javac.classpath}"/>
1223            </classpath>
1224            <fileset dir="${src.webapps.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
1225                <filename name="**/*.java"/>
1226            </fileset>
1227            <fileset dir="${src.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
1228                <filename name="**/*.java"/>
1229            </fileset>
1230            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
1231                <include name="**/*.java"/>
1232                <exclude name="*.java"/>
1233            </fileset>
1234            <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
1235        </javadoc>
1236        <copy todir="${dist.javadoc.dir}">
1237            <fileset dir="${src.webapps.dir}" excludes="${excludes}" includes="${includes}">
1238                <filename name="**/doc-files/**"/>
1239            </fileset>
1240            <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
1241                <filename name="**/doc-files/**"/>
1242            </fileset>
1243            <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
1244                <include name="**/doc-files/**"/>
1245            </fileset>
1246        </copy>
1247    </target>
1248    <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
1249        <nbbrowse file="${dist.javadoc.dir}/index.html"/>
1250    </target>
1251    <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
1252    <!--
1253                =========================
1254                TEST COMPILATION SECTION
1255                =========================
1256            -->
1257    <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
1258        <mkdir dir="${build.test.classes.dir}"/>
1259    </target>
1260    <target name="-pre-compile-test">
1261        <!-- Empty placeholder for easier customization. -->
1262        <!-- You can override this target in the ../build.xml file. -->
1263    </target>
1264    <target if="do.depend.true" name="-compile-test-depend">
1265        <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
1266    </target>
1267    <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
1268        <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}"/>
1269        <copy todir="${build.test.classes.dir}">
1270            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
1271        </copy>
1272    </target>
1273    <target name="-post-compile-test">
1274        <!-- Empty placeholder for easier customization. -->
1275        <!-- You can override this target in the ../build.xml file. -->
1276    </target>
1277    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
1278    <target name="-pre-compile-test-single">
1279        <!-- Empty placeholder for easier customization. -->
1280        <!-- You can override this target in the ../build.xml file. -->
1281    </target>
1282    <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
1283        <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
1284        <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
1285        <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}"/>
1286        <copy todir="${build.test.classes.dir}">
1287            <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
1288        </copy>
1289    </target>
1290    <target name="-post-compile-test-single">
1291        <!-- Empty placeholder for easier customization. -->
1292        <!-- You can override this target in the ../build.xml file. -->
1293    </target>
1294    <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
1295    <!--
1296                =======================
1297                TEST EXECUTION SECTION
1298                =======================
1299            -->
1300    <target depends="init" if="have.tests" name="-pre-test-run">
1301        <mkdir dir="${build.test.results.dir}"/>
1302    </target>
1303    <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
1304        <j2seproject3:test includes="${includes}" testincludes="**/*Test.java"/>
1305    </target>
1306    <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
1307        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
1308    </target>
1309    <target depends="init" if="have.tests" name="test-report"/>
1310    <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
1311    <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
1312    <target depends="init" if="have.tests" name="-pre-test-run-single">
1313        <mkdir dir="${build.test.results.dir}"/>
1314    </target>
1315    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
1316        <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
1317        <j2seproject3:test excludes="" includes="${test.includes}" testincludes="${test.includes}"/>
1318    </target>
1319    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
1320        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
1321    </target>
1322    <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"/>
1323    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single-method">
1324        <fail unless="test.class">Must select some files in the IDE or set test.class</fail>
1325        <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
1326        <j2seproject3:test excludes="" includes="${javac.includes}" testincludes="${test.class}" testmethods="${test.method}"/>
1327    </target>
1328    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method" if="have.tests" name="-post-test-run-single-method">
1329        <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
1330    </target>
1331    <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method,-post-test-run-single-method" description="Run single unit test." name="test-single-method"/>
1332    <!--
1333                =======================
1334                TEST DEBUGGING SECTION
1335                =======================
1336            -->
1337    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
1338        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
1339        <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testincludes="${javac.includes}"/>
1340    </target>
1341    <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test-method">
1342        <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
1343        <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
1344        <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testMethod="${test.method}" testincludes="${test.class}" testmethods="${test.method}"/>
1345    </target>
1346    <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
1347        <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
1348    </target>
1349    <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
1350    <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test-method" name="debug-test-method"/>
1351    <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
1352        <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
1353    </target>
1354    <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
1355    <!--
1356                =========================
1357                APPLET EXECUTION SECTION
1358                =========================
1359            -->
1360    <target depends="init,compile-single" name="run-applet">
1361        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
1362        <j2seproject1:java classname="sun.applet.AppletViewer">
1363            <customize>
1364                <arg value="${applet.url}"/>
1365            </customize>
1366        </j2seproject1:java>
1367    </target>
1368    <!--
1369                =========================
1370                APPLET DEBUGGING  SECTION
1371                =========================
1372            -->
1373    <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
1374        <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
1375        <j2seproject3:debug classname="sun.applet.AppletViewer">
1376            <customize>
1377                <arg value="${applet.url}"/>
1378            </customize>
1379        </j2seproject3:debug>
1380    </target>
1381    <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
1382    <!--
1383                ===============
1384                CLEANUP SECTION
1385                ===============
1386            -->
1387    <target name="-deps-clean-init" unless="built-clean.properties">
1388        <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
1389        <delete file="${built-clean.properties}" quiet="true"/>
1390    </target>
1391    <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
1392        <echo level="warn" message="Cycle detected: TMCSim was already built"/>
1393    </target>
1394    <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
1395        <mkdir dir="${build.dir}"/>
1396        <touch file="${built-clean.properties}" verbose="false"/>
1397        <property file="${built-clean.properties}" prefix="already.built.clean."/>
1398        <antcall target="-warn-already-built-clean"/>
1399        <propertyfile file="${built-clean.properties}">
1400            <entry key="${basedir}" value=""/>
1401        </propertyfile>
1402    </target>
1403    <target depends="init" name="-do-clean">
1404        <delete dir="${build.dir}"/>
1405        <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
1406    </target>
1407    <target name="-post-clean">
1408        <!-- Empty placeholder for easier customization. -->
1409        <!-- You can override this target in the ../build.xml file. -->
1410    </target>
1411    <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
1412    <target name="-check-call-dep">
1413        <property file="${call.built.properties}" prefix="already.built."/>
1414        <condition property="should.call.dep">
1415            <and>
1416                <not>
1417                    <isset property="already.built.${call.subproject}"/>
1418                </not>
1419                <available file="${call.script}"/>
1420            </and>
1421        </condition>
1422    </target>
1423    <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
1424        <ant antfile="${call.script}" inheritall="false" target="${call.target}">
1425            <propertyset>
1426                <propertyref prefix="transfer."/>
1427                <mapper from="transfer.*" to="*" type="glob"/>
1428            </propertyset>
1429        </ant>
1430    </target>
1431</project>
Note: See TracBrowser for help on using the repository browser.