1 <?xml version="1.0" encoding="UTF-8"?>
3 *** GENERATED FROM project.xml - DO NOT EDIT ***
4 *** EDIT ../build.xml INSTEAD ***
6 For the purpose of easier reading the script
7 is divided into following sections:
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="addressbook-lib-impl">
23 <fail message="Please build using Ant 1.8.0 or higher.">
26 <antversion atleast="1.8.0"/>
30 <target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
32 ======================
33 INITIALIZATION SECTION
34 ======================
36 <target name="-pre-init">
37 <!-- Empty placeholder for easier customization. -->
38 <!-- You can override this target in the ../build.xml file. -->
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"/>
45 <target name="-pre-init-libraries">
46 <property location="./lib/nblibraries.properties" name="libraries.path"/>
47 <dirname file="${libraries.path}" property="libraries.dir.nativedirsep"/>
48 <pathconvert dirsep="/" property="libraries.dir">
49 <path path="${libraries.dir.nativedirsep}"/>
51 <basename file="${libraries.path}" property="libraries.basename" suffix=".properties"/>
52 <available file="${libraries.dir}/${libraries.basename}-private.properties" property="private.properties.available"/>
54 <target depends="-pre-init-libraries" if="private.properties.available" name="-init-private-libraries">
55 <loadproperties encoding="ISO-8859-1" srcfile="${libraries.dir}/${libraries.basename}-private.properties">
57 <replacestring from="$${base}" to="${libraries.dir}"/>
62 <target depends="-pre-init,-init-private,-init-private-libraries" name="-init-libraries">
63 <loadproperties encoding="ISO-8859-1" srcfile="${libraries.path}">
65 <replacestring from="$${base}" to="${libraries.dir}"/>
70 <target depends="-pre-init,-init-private,-init-libraries" name="-init-user">
71 <property file="${user.properties.file}"/>
72 <!-- The two properties below are usually overridden -->
73 <!-- by the active platform. Just a fallback. -->
74 <property name="default.javac.source" value="1.4"/>
75 <property name="default.javac.target" value="1.4"/>
77 <target depends="-pre-init,-init-private,-init-libraries,-init-user" name="-init-project">
78 <property file="nbproject/configs/${config}.properties"/>
79 <property file="nbproject/project.properties"/>
81 <target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-init-macrodef-property" name="-do-init">
82 <property name="platform.java" value="${java.home}/bin/java"/>
83 <available file="${manifest.file}" property="manifest.available"/>
84 <condition property="splashscreen.available">
87 <equals arg1="${application.splash}" arg2="" trim="true"/>
89 <available file="${application.splash}"/>
92 <condition property="main.class.available">
94 <isset property="main.class"/>
96 <equals arg1="${main.class}" arg2="" trim="true"/>
100 <condition property="profile.available">
102 <isset property="javac.profile"/>
103 <length length="0" string="${javac.profile}" when="greater"/>
104 <matches pattern="1\.[89](\..*)?" string="${javac.source}"/>
107 <condition property="do.archive">
110 <istrue value="${jar.archive.disabled}"/>
112 <istrue value="${not.archive.disabled}"/>
115 <condition property="do.mkdist">
117 <isset property="do.archive"/>
118 <isset property="libs.CopyLibs.classpath"/>
120 <istrue value="${mkdist.disabled}"/>
124 <condition property="do.archive+manifest.available">
126 <isset property="manifest.available"/>
127 <istrue value="${do.archive}"/>
130 <condition property="do.archive+main.class.available">
132 <isset property="main.class.available"/>
133 <istrue value="${do.archive}"/>
136 <condition property="do.archive+splashscreen.available">
138 <isset property="splashscreen.available"/>
139 <istrue value="${do.archive}"/>
142 <condition property="do.archive+profile.available">
144 <isset property="profile.available"/>
145 <istrue value="${do.archive}"/>
148 <condition property="have.tests">
150 <available file="${test.src.dir}"/>
153 <condition property="have.sources">
155 <available file="${src.dir}"/>
158 <condition property="netbeans.home+have.tests">
160 <isset property="netbeans.home"/>
161 <isset property="have.tests"/>
164 <condition property="no.javadoc.preview">
166 <isset property="javadoc.preview"/>
167 <isfalse value="${javadoc.preview}"/>
170 <property name="run.jvmargs" value=""/>
171 <property name="run.jvmargs.ide" value=""/>
172 <property name="javac.compilerargs" value=""/>
173 <property name="work.dir" value="${basedir}"/>
174 <condition property="no.deps">
176 <istrue value="${no.dependencies}"/>
179 <property name="javac.debug" value="true"/>
180 <property name="javadoc.preview" value="true"/>
181 <property name="application.args" value=""/>
182 <property name="source.encoding" value="${file.encoding}"/>
183 <property name="runtime.encoding" value="${source.encoding}"/>
184 <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
186 <isset property="javadoc.encoding"/>
188 <equals arg1="${javadoc.encoding}" arg2=""/>
192 <property name="javadoc.encoding.used" value="${source.encoding}"/>
193 <property name="includes" value="**"/>
194 <property name="excludes" value=""/>
195 <property name="do.depend" value="false"/>
196 <condition property="do.depend.true">
197 <istrue value="${do.depend}"/>
199 <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
200 <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
202 <isset property="endorsed.classpath"/>
204 <equals arg1="${endorsed.classpath}" arg2="" trim="true"/>
208 <condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}">
209 <isset property="profile.available"/>
211 <condition else="false" property="jdkBug6558476">
213 <matches pattern="1\.[56]" string="${java.specification.version}"/>
219 <condition else="false" property="javac.fork">
221 <istrue value="${jdkBug6558476}"/>
222 <istrue value="${javac.external.vm}"/>
225 <property name="jar.index" value="false"/>
226 <property name="jar.index.metainf" value="${jar.index}"/>
227 <property name="copylibs.rebase" value="true"/>
228 <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
229 <condition property="junit.available">
231 <available classname="org.junit.Test" classpath="${run.test.classpath}"/>
232 <available classname="junit.framework.Test" classpath="${run.test.classpath}"/>
235 <condition property="testng.available">
236 <available classname="org.testng.annotations.Test" classpath="${run.test.classpath}"/>
238 <condition property="junit+testng.available">
240 <istrue value="${junit.available}"/>
241 <istrue value="${testng.available}"/>
244 <condition else="testng" property="testng.mode" value="mixed">
245 <istrue value="${junit+testng.available}"/>
247 <condition else="" property="testng.debug.mode" value="-mixed">
248 <istrue value="${junit+testng.available}"/>
250 <property name="java.failonerror" value="true"/>
252 <target name="-post-init">
253 <!-- Empty placeholder for easier customization. -->
254 <!-- You can override this target in the ../build.xml file. -->
256 <target depends="-pre-init,-init-private,-init-libraries,-init-user,-init-project,-do-init" name="-init-check">
257 <fail unless="src.dir">Must set src.dir</fail>
258 <fail unless="test.src.dir">Must set test.src.dir</fail>
259 <fail unless="build.dir">Must set build.dir</fail>
260 <fail unless="dist.dir">Must set dist.dir</fail>
261 <fail unless="build.classes.dir">Must set build.classes.dir</fail>
262 <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
263 <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
264 <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
265 <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
266 <fail unless="dist.jar">Must set dist.jar</fail>
268 <target name="-init-macrodef-property">
269 <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
270 <attribute name="name"/>
271 <attribute name="value"/>
273 <property name="@{name}" value="${@{value}}"/>
277 <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
278 <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
279 <attribute default="${src.dir}" name="srcdir"/>
280 <attribute default="${build.classes.dir}" name="destdir"/>
281 <attribute default="${javac.classpath}" name="classpath"/>
282 <attribute default="${javac.processorpath}" name="processorpath"/>
283 <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
284 <attribute default="${includes}" name="includes"/>
285 <attribute default="${excludes}" name="excludes"/>
286 <attribute default="${javac.debug}" name="debug"/>
287 <attribute default="${empty.dir}" name="sourcepath"/>
288 <attribute default="${empty.dir}" name="gensrcdir"/>
289 <element name="customize" optional="true"/>
291 <property location="${build.dir}/empty" name="empty.dir"/>
292 <mkdir dir="${empty.dir}"/>
293 <mkdir dir="@{apgeneratedsrcdir}"/>
294 <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}">
296 <dirset dir="@{gensrcdir}" erroronmissingdir="false">
301 <path path="@{classpath}"/>
303 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
304 <compilerarg line="${javac.profile.cmd.line.arg}"/>
305 <compilerarg line="${javac.compilerargs}"/>
306 <compilerarg value="-processorpath"/>
307 <compilerarg path="@{processorpath}:${empty.dir}"/>
308 <compilerarg line="${ap.processors.internal}"/>
309 <compilerarg line="${annotation.processing.processor.options}"/>
310 <compilerarg value="-s"/>
311 <compilerarg path="@{apgeneratedsrcdir}"/>
312 <compilerarg line="${ap.proc.none.internal}"/>
318 <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
319 <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
320 <attribute default="${src.dir}" name="srcdir"/>
321 <attribute default="${build.classes.dir}" name="destdir"/>
322 <attribute default="${javac.classpath}" name="classpath"/>
323 <attribute default="${javac.processorpath}" name="processorpath"/>
324 <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
325 <attribute default="${includes}" name="includes"/>
326 <attribute default="${excludes}" name="excludes"/>
327 <attribute default="${javac.debug}" name="debug"/>
328 <attribute default="${empty.dir}" name="sourcepath"/>
329 <attribute default="${empty.dir}" name="gensrcdir"/>
330 <element name="customize" optional="true"/>
332 <property location="${build.dir}/empty" name="empty.dir"/>
333 <mkdir dir="${empty.dir}"/>
334 <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}">
336 <dirset dir="@{gensrcdir}" erroronmissingdir="false">
341 <path path="@{classpath}"/>
343 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
344 <compilerarg line="${javac.profile.cmd.line.arg}"/>
345 <compilerarg line="${javac.compilerargs}"/>
351 <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
352 <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
353 <attribute default="${src.dir}" name="srcdir"/>
354 <attribute default="${build.classes.dir}" name="destdir"/>
355 <attribute default="${javac.classpath}" name="classpath"/>
357 <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
359 <path path="@{classpath}"/>
364 <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
365 <attribute default="${build.classes.dir}" name="destdir"/>
367 <fail unless="javac.includes">Must set javac.includes</fail>
368 <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
370 <filelist dir="@{destdir}" files="${javac.includes}"/>
372 <globmapper from="*.java" to="*.class"/>
374 <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
375 <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
377 <files includesfile="${javac.includesfile.binary}"/>
380 <fileset file="${javac.includesfile.binary}"/>
385 <target if="${junit.available}" name="-init-macrodef-junit-init">
386 <condition else="false" property="nb.junit.batch" value="true">
388 <istrue value="${junit.available}"/>
390 <isset property="test.method"/>
394 <condition else="false" property="nb.junit.single" value="true">
396 <istrue value="${junit.available}"/>
397 <isset property="test.method"/>
401 <target name="-init-test-properties">
402 <property name="test.binaryincludes" value="<nothing>"/>
403 <property name="test.binarytestincludes" value=""/>
404 <property name="test.binaryexcludes" value=""/>
406 <target if="${nb.junit.single}" name="-init-macrodef-junit-single" unless="${nb.junit.batch}">
407 <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
408 <attribute default="${includes}" name="includes"/>
409 <attribute default="${excludes}" name="excludes"/>
410 <attribute default="**" name="testincludes"/>
411 <attribute default="" name="testmethods"/>
412 <element name="customize" optional="true"/>
414 <property name="junit.forkmode" value="perTest"/>
415 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
416 <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
418 <propertyref prefix="test-sys-prop."/>
419 <mapper from="test-sys-prop.*" to="*" type="glob"/>
421 <formatter type="brief" usefile="false"/>
422 <formatter type="xml"/>
423 <jvmarg value="-ea"/>
429 <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-batch" unless="${nb.junit.single}">
430 <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
431 <attribute default="${includes}" name="includes"/>
432 <attribute default="${excludes}" name="excludes"/>
433 <attribute default="**" name="testincludes"/>
434 <attribute default="" name="testmethods"/>
435 <element name="customize" optional="true"/>
437 <property name="junit.forkmode" value="perTest"/>
438 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
439 <batchtest todir="${build.test.results.dir}">
440 <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
441 <filename name="@{testincludes}"/>
443 <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
444 <filename name="${test.binarytestincludes}"/>
448 <propertyref prefix="test-sys-prop."/>
449 <mapper from="test-sys-prop.*" to="*" type="glob"/>
451 <formatter type="brief" usefile="false"/>
452 <formatter type="xml"/>
453 <jvmarg value="-ea"/>
459 <target depends="-init-macrodef-junit-init,-init-macrodef-junit-single, -init-macrodef-junit-batch" if="${junit.available}" name="-init-macrodef-junit"/>
460 <target if="${testng.available}" name="-init-macrodef-testng">
461 <macrodef name="testng" uri="http://www.netbeans.org/ns/j2se-project/3">
462 <attribute default="${includes}" name="includes"/>
463 <attribute default="${excludes}" name="excludes"/>
464 <attribute default="**" name="testincludes"/>
465 <attribute default="" name="testmethods"/>
466 <element name="customize" optional="true"/>
468 <condition else="" property="testng.methods.arg" value="@{testincludes}.@{testmethods}">
469 <isset property="test.method"/>
471 <union id="test.set">
472 <fileset dir="${test.src.dir}" excludes="@{excludes},**/*.xml,${excludes}" includes="@{includes}">
473 <filename name="@{testincludes}"/>
476 <taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
477 <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="addressbook-lib" testname="TestNG tests" workingDir="${work.dir}">
478 <xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
480 <propertyref prefix="test-sys-prop."/>
481 <mapper from="test-sys-prop.*" to="*" type="glob"/>
488 <target name="-init-macrodef-test-impl">
489 <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
490 <attribute default="${includes}" name="includes"/>
491 <attribute default="${excludes}" name="excludes"/>
492 <attribute default="**" name="testincludes"/>
493 <attribute default="" name="testmethods"/>
494 <element implicit="true" name="customize" optional="true"/>
496 <echo>No tests executed.</echo>
500 <target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-impl">
501 <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
502 <attribute default="${includes}" name="includes"/>
503 <attribute default="${excludes}" name="excludes"/>
504 <attribute default="**" name="testincludes"/>
505 <attribute default="" name="testmethods"/>
506 <element implicit="true" name="customize" optional="true"/>
508 <j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
510 </j2seproject3:junit>
514 <target depends="-init-macrodef-testng" if="${testng.available}" name="-init-macrodef-testng-impl">
515 <macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
516 <attribute default="${includes}" name="includes"/>
517 <attribute default="${excludes}" name="excludes"/>
518 <attribute default="**" name="testincludes"/>
519 <attribute default="" name="testmethods"/>
520 <element implicit="true" name="customize" optional="true"/>
522 <j2seproject3:testng excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
524 </j2seproject3:testng>
528 <target depends="-init-macrodef-test-impl,-init-macrodef-junit-impl,-init-macrodef-testng-impl" name="-init-macrodef-test">
529 <macrodef name="test" uri="http://www.netbeans.org/ns/j2se-project/3">
530 <attribute default="${includes}" name="includes"/>
531 <attribute default="${excludes}" name="excludes"/>
532 <attribute default="**" name="testincludes"/>
533 <attribute default="" name="testmethods"/>
535 <j2seproject3:test-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
538 <path path="${run.test.classpath}"/>
540 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
541 <jvmarg line="${run.jvmargs}"/>
542 <jvmarg line="${run.jvmargs.ide}"/>
544 </j2seproject3:test-impl>
548 <target if="${junit.available}" name="-init-macrodef-junit-debug" unless="${nb.junit.batch}">
549 <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
550 <attribute default="${includes}" name="includes"/>
551 <attribute default="${excludes}" name="excludes"/>
552 <attribute default="**" name="testincludes"/>
553 <attribute default="" name="testmethods"/>
554 <element name="customize" optional="true"/>
556 <property name="junit.forkmode" value="perTest"/>
557 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
558 <test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
560 <propertyref prefix="test-sys-prop."/>
561 <mapper from="test-sys-prop.*" to="*" type="glob"/>
563 <formatter type="brief" usefile="false"/>
564 <formatter type="xml"/>
565 <jvmarg value="-ea"/>
566 <jvmarg line="${debug-args-line}"/>
567 <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
573 <target depends="-init-test-properties" if="${nb.junit.batch}" name="-init-macrodef-junit-debug-batch">
574 <macrodef name="junit-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
575 <attribute default="${includes}" name="includes"/>
576 <attribute default="${excludes}" name="excludes"/>
577 <attribute default="**" name="testincludes"/>
578 <attribute default="" name="testmethods"/>
579 <element name="customize" optional="true"/>
581 <property name="junit.forkmode" value="perTest"/>
582 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
583 <batchtest todir="${build.test.results.dir}">
584 <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
585 <filename name="@{testincludes}"/>
587 <fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
588 <filename name="${test.binarytestincludes}"/>
592 <propertyref prefix="test-sys-prop."/>
593 <mapper from="test-sys-prop.*" to="*" type="glob"/>
595 <formatter type="brief" usefile="false"/>
596 <formatter type="xml"/>
597 <jvmarg value="-ea"/>
598 <jvmarg line="${debug-args-line}"/>
599 <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
605 <target depends="-init-macrodef-junit-debug,-init-macrodef-junit-debug-batch" if="${junit.available}" name="-init-macrodef-junit-debug-impl">
606 <macrodef name="test-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
607 <attribute default="${includes}" name="includes"/>
608 <attribute default="${excludes}" name="excludes"/>
609 <attribute default="**" name="testincludes"/>
610 <attribute default="" name="testmethods"/>
611 <element implicit="true" name="customize" optional="true"/>
613 <j2seproject3:junit-debug excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
615 </j2seproject3:junit-debug>
619 <target if="${testng.available}" name="-init-macrodef-testng-debug">
620 <macrodef name="testng-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
621 <attribute default="${main.class}" name="testClass"/>
622 <attribute default="" name="testMethod"/>
623 <element name="customize2" optional="true"/>
625 <condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
626 <isset property="test.method"/>
628 <condition else="-suitename addressbook-lib -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
629 <matches pattern=".*\.xml" string="@{testClass}"/>
631 <delete dir="${build.test.results.dir}" quiet="true"/>
632 <mkdir dir="${build.test.results.dir}"/>
633 <j2seproject3:debug classname="org.testng.TestNG" classpath="${debug.test.classpath}">
636 <jvmarg value="-ea"/>
637 <arg line="${testng.debug.mode}"/>
638 <arg line="-d ${build.test.results.dir}"/>
639 <arg line="-listener org.testng.reporters.VerboseReporter"/>
640 <arg line="${testng.cmd.args}"/>
642 </j2seproject3:debug>
646 <target depends="-init-macrodef-testng-debug" if="${testng.available}" name="-init-macrodef-testng-debug-impl">
647 <macrodef name="testng-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
648 <attribute default="${main.class}" name="testClass"/>
649 <attribute default="" name="testMethod"/>
650 <element implicit="true" name="customize2" optional="true"/>
652 <j2seproject3:testng-debug testClass="@{testClass}" testMethod="@{testMethod}">
654 </j2seproject3:testng-debug>
658 <target depends="-init-macrodef-junit-debug-impl" if="${junit.available}" name="-init-macrodef-test-debug-junit">
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"/>
667 <j2seproject3:test-debug-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
670 <path path="${run.test.classpath}"/>
672 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
673 <jvmarg line="${run.jvmargs}"/>
674 <jvmarg line="${run.jvmargs.ide}"/>
676 </j2seproject3:test-debug-impl>
680 <target depends="-init-macrodef-testng-debug-impl" if="${testng.available}" name="-init-macrodef-test-debug-testng">
681 <macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
682 <attribute default="${includes}" name="includes"/>
683 <attribute default="${excludes}" name="excludes"/>
684 <attribute default="**" name="testincludes"/>
685 <attribute default="" name="testmethods"/>
686 <attribute default="${main.class}" name="testClass"/>
687 <attribute default="" name="testMethod"/>
689 <j2seproject3:testng-debug-impl testClass="@{testClass}" testMethod="@{testMethod}">
692 <propertyref prefix="test-sys-prop."/>
693 <mapper from="test-sys-prop.*" to="*" type="glob"/>
696 </j2seproject3:testng-debug-impl>
700 <target depends="-init-macrodef-test-debug-junit,-init-macrodef-test-debug-testng" name="-init-macrodef-test-debug"/>
702 pre NB7.2 profiling section; consider it deprecated
704 <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" if="profiler.info.jvmargs.agent" name="profile-init"/>
705 <target if="profiler.info.jvmargs.agent" name="-profile-pre-init">
706 <!-- Empty placeholder for easier customization. -->
707 <!-- You can override this target in the ../build.xml file. -->
709 <target if="profiler.info.jvmargs.agent" name="-profile-post-init">
710 <!-- Empty placeholder for easier customization. -->
711 <!-- You can override this target in the ../build.xml file. -->
713 <target if="profiler.info.jvmargs.agent" name="-profile-init-macrodef-profile">
714 <macrodef name="resolve">
715 <attribute name="name"/>
716 <attribute name="value"/>
718 <property name="@{name}" value="${env.@{value}}"/>
721 <macrodef name="profile">
722 <attribute default="${main.class}" name="classname"/>
723 <element name="customize" optional="true"/>
725 <property environment="env"/>
726 <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
727 <java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}">
728 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
729 <jvmarg value="${profiler.info.jvmargs.agent}"/>
730 <jvmarg line="${profiler.info.jvmargs}"/>
731 <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
732 <arg line="${application.args}"/>
734 <path path="${run.classpath}"/>
737 <propertyref prefix="run-sys-prop."/>
738 <mapper from="run-sys-prop.*" to="*" type="glob"/>
745 <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" if="profiler.info.jvmargs.agent" name="-profile-init-check">
746 <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
747 <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
750 end of pre NB7.2 profiling section
752 <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
753 <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
754 <attribute default="${main.class}" name="name"/>
755 <attribute default="${debug.classpath}" name="classpath"/>
756 <attribute default="" name="stopclassname"/>
758 <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
760 <path path="@{classpath}"/>
765 <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
766 <attribute default="${build.classes.dir}" name="dir"/>
769 <fileset dir="@{dir}" includes="${fix.classes}">
770 <include name="${fix.includes}*.class"/>
776 <target name="-init-debug-args">
777 <property name="version-output" value="java version "${ant.java.version}"/>
778 <condition property="have-jdk-older-than-1.4">
780 <contains string="${version-output}" substring="java version "1.0"/>
781 <contains string="${version-output}" substring="java version "1.1"/>
782 <contains string="${version-output}" substring="java version "1.2"/>
783 <contains string="${version-output}" substring="java version "1.3"/>
786 <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
787 <istrue value="${have-jdk-older-than-1.4}"/>
789 <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
790 <os family="windows"/>
792 <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
793 <isset property="debug.transport"/>
796 <target depends="-init-debug-args" name="-init-macrodef-debug">
797 <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
798 <attribute default="${main.class}" name="classname"/>
799 <attribute default="${debug.classpath}" name="classpath"/>
800 <element name="customize" optional="true"/>
802 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
803 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
804 <jvmarg line="${debug-args-line}"/>
805 <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
806 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
807 <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
808 <jvmarg line="${run.jvmargs}"/>
809 <jvmarg line="${run.jvmargs.ide}"/>
811 <path path="@{classpath}"/>
814 <propertyref prefix="run-sys-prop."/>
815 <mapper from="run-sys-prop.*" to="*" type="glob"/>
822 <target name="-init-macrodef-java">
823 <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
824 <attribute default="${main.class}" name="classname"/>
825 <attribute default="${run.classpath}" name="classpath"/>
826 <attribute default="jvm" name="jvm"/>
827 <element name="customize" optional="true"/>
829 <java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true">
830 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
831 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
832 <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
833 <jvmarg line="${run.jvmargs}"/>
834 <jvmarg line="${run.jvmargs.ide}"/>
836 <path path="@{classpath}"/>
839 <propertyref prefix="run-sys-prop."/>
840 <mapper from="run-sys-prop.*" to="*" type="glob"/>
847 <target name="-init-macrodef-copylibs">
848 <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
849 <attribute default="${manifest.file}" name="manifest"/>
850 <element name="customize" optional="true"/>
852 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
853 <pathconvert property="run.classpath.without.build.classes.dir">
854 <path path="${run.classpath}"/>
855 <map from="${build.classes.dir.resolved}" to=""/>
857 <pathconvert pathsep=" " property="jar.classpath">
858 <path path="${run.classpath.without.build.classes.dir}"/>
862 <replacestring from=" " to="%20"/>
864 <globmapper from="*" to="lib/*"/>
867 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
868 <copylibs compress="${jar.compress}" excludeFromCopy="${copylibs.excludes}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
869 <fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
871 <attribute name="Class-Path" value="${jar.classpath}"/>
878 <target name="-init-presetdef-jar">
879 <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
880 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
881 <j2seproject1:fileset dir="${build.classes.dir}" excludes="${dist.archive.excludes}"/>
885 <target name="-init-ap-cmdline-properties">
886 <property name="annotation.processing.enabled" value="true"/>
887 <property name="annotation.processing.processors.list" value=""/>
888 <property name="annotation.processing.processor.options" value=""/>
889 <property name="annotation.processing.run.all.processors" value="true"/>
890 <property name="javac.processorpath" value="${javac.classpath}"/>
891 <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
892 <condition property="ap.supported.internal" value="true">
894 <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
898 <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
899 <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
900 <isfalse value="${annotation.processing.run.all.processors}"/>
902 <condition else="" property="ap.proc.none.internal" value="-proc:none">
903 <isfalse value="${annotation.processing.enabled}"/>
906 <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
907 <property name="ap.cmd.line.internal" value=""/>
909 <target depends="-pre-init,-init-private,-init-libraries,-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"/>
915 <target name="-deps-jar-init" unless="built-jar.properties">
916 <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
917 <delete file="${built-jar.properties}" quiet="true"/>
919 <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
920 <echo level="warn" message="Cycle detected: addressbook-lib was already built"/>
922 <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
923 <mkdir dir="${build.dir}"/>
924 <touch file="${built-jar.properties}" verbose="false"/>
925 <property file="${built-jar.properties}" prefix="already.built.jar."/>
926 <antcall target="-warn-already-built-jar"/>
927 <propertyfile file="${built-jar.properties}">
928 <entry key="${basedir}" value=""/>
931 <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
932 <target depends="init" name="-check-automatic-build">
933 <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
935 <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
936 <antcall target="clean"/>
938 <target depends="init,deps-jar" name="-pre-pre-compile">
939 <mkdir dir="${build.classes.dir}"/>
941 <target name="-pre-compile">
942 <!-- Empty placeholder for easier customization. -->
943 <!-- You can override this target in the ../build.xml file. -->
945 <target if="do.depend.true" name="-compile-depend">
946 <pathconvert property="build.generated.subdirs">
947 <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
951 <j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
953 <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
954 <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
955 <copy todir="${build.classes.dir}">
956 <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
959 <target if="has.persistence.xml" name="-copy-persistence-xml">
960 <mkdir dir="${build.classes.dir}/META-INF"/>
961 <copy todir="${build.classes.dir}/META-INF">
962 <fileset dir="${meta.inf.dir}" includes="persistence.xml orm.xml"/>
965 <target name="-post-compile">
966 <!-- Empty placeholder for easier customization. -->
967 <!-- You can override this target in the ../build.xml file. -->
969 <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
970 <target name="-pre-compile-single">
971 <!-- Empty placeholder for easier customization. -->
972 <!-- You can override this target in the ../build.xml file. -->
974 <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
975 <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
976 <j2seproject3:force-recompile/>
977 <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}"/>
979 <target name="-post-compile-single">
980 <!-- Empty placeholder for easier customization. -->
981 <!-- You can override this target in the ../build.xml file. -->
983 <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
989 <target depends="init" name="-pre-pre-jar">
990 <dirname file="${dist.jar}" property="dist.jar.dir"/>
991 <mkdir dir="${dist.jar.dir}"/>
993 <target name="-pre-jar">
994 <!-- Empty placeholder for easier customization. -->
995 <!-- You can override this target in the ../build.xml file. -->
997 <target depends="init" if="do.archive" name="-do-jar-create-manifest" unless="manifest.available">
998 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
999 <touch file="${tmp.manifest.file}" verbose="false"/>
1001 <target depends="init" if="do.archive+manifest.available" name="-do-jar-copy-manifest">
1002 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
1003 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>
1005 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+main.class.available" name="-do-jar-set-mainclass">
1006 <manifest file="${tmp.manifest.file}" mode="update">
1007 <attribute name="Main-Class" value="${main.class}"/>
1010 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+profile.available" name="-do-jar-set-profile">
1011 <manifest file="${tmp.manifest.file}" mode="update">
1012 <attribute name="Profile" value="${javac.profile}"/>
1015 <target depends="init,-do-jar-create-manifest,-do-jar-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-set-splashscreen">
1016 <basename file="${application.splash}" property="splashscreen.basename"/>
1017 <mkdir dir="${build.classes.dir}/META-INF"/>
1018 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
1019 <manifest file="${tmp.manifest.file}" mode="update">
1020 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
1023 <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">
1024 <j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
1025 <echo level="info">To run this application from the command line without Ant, try:</echo>
1026 <property location="${dist.jar}" name="dist.jar.resolved"/>
1027 <echo level="info">java -jar "${dist.jar.resolved}"</echo>
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" if="do.archive" name="-do-jar-jar" unless="do.mkdist">
1030 <j2seproject1:jar manifest="${tmp.manifest.file}"/>
1031 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
1032 <property location="${dist.jar}" name="dist.jar.resolved"/>
1033 <pathconvert property="run.classpath.with.dist.jar">
1034 <path path="${run.classpath}"/>
1035 <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
1037 <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}">
1038 <isset property="main.class.available"/>
1040 <condition else="debug" property="jar.usage.level" value="info">
1041 <isset property="main.class.available"/>
1043 <echo level="${jar.usage.level}" message="${jar.usage.message}"/>
1045 <target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest">
1047 <fileset file="${tmp.manifest.file}"/>
1050 <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"/>
1051 <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"/>
1052 <target name="-post-jar">
1053 <!-- Empty placeholder for easier customization. -->
1054 <!-- You can override this target in the ../build.xml file. -->
1056 <target depends="init,compile,-pre-jar,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/>
1057 <target depends="init,compile,-pre-jar,-do-jar,-post-jar" description="Build JAR." name="jar"/>
1063 <target depends="init,compile" description="Run a main class." name="run">
1066 <arg line="${application.args}"/>
1068 </j2seproject1:java>
1070 <target name="-do-not-recompile">
1071 <property name="javac.includes.binary" value=""/>
1073 <target depends="init,compile-single" name="run-single">
1074 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1075 <j2seproject1:java classname="${run.class}"/>
1077 <target depends="init,compile-test-single" name="run-test-with-main">
1078 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1079 <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
1086 <target depends="init" if="netbeans.home" name="-debug-start-debugger">
1087 <j2seproject1:nbjpdastart name="${debug.class}"/>
1089 <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
1090 <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
1092 <target depends="init,compile" name="-debug-start-debuggee">
1093 <j2seproject3:debug>
1095 <arg line="${application.args}"/>
1097 </j2seproject3:debug>
1099 <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
1100 <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
1101 <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
1103 <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
1104 <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
1105 <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
1106 <j2seproject3:debug classname="${debug.class}"/>
1108 <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
1109 <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
1110 <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
1111 <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
1113 <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
1114 <target depends="init" name="-pre-debug-fix">
1115 <fail unless="fix.includes">Must set fix.includes</fail>
1116 <property name="javac.includes" value="${fix.includes}.java"/>
1118 <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
1119 <j2seproject1:nbjpdareload/>
1121 <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
1128 pre NB7.2 profiler integration
1130 <target depends="profile-init,compile" description="Profile a project in the IDE." if="profiler.info.jvmargs.agent" name="-profile-pre72">
1131 <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1134 <path path="${run.classpath}"/>
1139 <target depends="profile-init,compile-single" description="Profile a selected class in the IDE." if="profiler.info.jvmargs.agent" name="-profile-single-pre72">
1140 <fail unless="profile.class">Must select one file in the IDE or set profile.class</fail>
1141 <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1144 <path path="${run.classpath}"/>
1147 <profile classname="${profile.class}"/>
1149 <target depends="profile-init,compile-single" if="profiler.info.jvmargs.agent" name="-profile-applet-pre72">
1150 <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1153 <path path="${run.classpath}"/>
1156 <profile classname="sun.applet.AppletViewer">
1158 <arg value="${applet.url}"/>
1162 <target depends="profile-init,compile-test-single" if="profiler.info.jvmargs.agent" name="-profile-test-single-pre72">
1163 <fail unless="netbeans.home">This target only works when run from inside the NetBeans IDE.</fail>
1166 <path path="${run.test.classpath}"/>
1169 <junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
1170 <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
1171 <jvmarg value="${profiler.info.jvmargs.agent}"/>
1172 <jvmarg line="${profiler.info.jvmargs}"/>
1173 <test name="${profile.class}"/>
1175 <path path="${run.test.classpath}"/>
1178 <propertyref prefix="test-sys-prop."/>
1179 <mapper from="test-sys-prop.*" to="*" type="glob"/>
1181 <formatter type="brief" usefile="false"/>
1182 <formatter type="xml"/>
1186 end of pre NB72 profiling section
1188 <target if="netbeans.home" name="-profile-check">
1189 <condition property="profiler.configured">
1191 <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-agentpath:"/>
1192 <contains casesensitive="true" string="${run.jvmargs.ide}" substring="-javaagent:"/>
1196 <target depends="-profile-check,-profile-pre72" description="Profile a project in the IDE." if="profiler.configured" name="profile" unless="profiler.info.jvmargs.agent">
1198 <antcall target="run"/>
1200 <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">
1201 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1203 <antcall target="run-single"/>
1205 <target depends="-profile-test-single-pre72" description="Profile a selected test in the IDE." name="profile-test-single"/>
1206 <target depends="-profile-check" description="Profile a selected test in the IDE." if="profiler.configured" name="profile-test" unless="profiler.info.jvmargs">
1207 <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
1209 <antcall target="test-single"/>
1211 <target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
1212 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
1214 <antcal target="run-test-with-main"/>
1216 <target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
1217 <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
1219 <antcall target="run-applet"/>
1226 <target depends="init" if="have.sources" name="-javadoc-build">
1227 <mkdir dir="${dist.javadoc.dir}"/>
1228 <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}">
1230 <isset property="endorsed.classpath.cmd.line.arg"/>
1232 <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/>
1236 <condition else="" property="bug5101868workaround" value="*.java">
1237 <matches pattern="1\.[56](\..*)?" string="${java.version}"/>
1239 <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}">
1241 <path path="${javac.classpath}"/>
1243 <fileset dir="${src.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
1244 <filename name="**/*.java"/>
1246 <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
1247 <include name="**/*.java"/>
1248 <exclude name="*.java"/>
1250 <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
1252 <copy todir="${dist.javadoc.dir}">
1253 <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
1254 <filename name="**/doc-files/**"/>
1256 <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
1257 <include name="**/doc-files/**"/>
1261 <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
1262 <nbbrowse file="${dist.javadoc.dir}/index.html"/>
1264 <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
1266 =========================
1267 TEST COMPILATION SECTION
1268 =========================
1270 <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
1271 <mkdir dir="${build.test.classes.dir}"/>
1273 <target name="-pre-compile-test">
1274 <!-- Empty placeholder for easier customization. -->
1275 <!-- You can override this target in the ../build.xml file. -->
1277 <target if="do.depend.true" name="-compile-test-depend">
1278 <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
1280 <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
1281 <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}"/>
1282 <copy todir="${build.test.classes.dir}">
1283 <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
1286 <target name="-post-compile-test">
1287 <!-- Empty placeholder for easier customization. -->
1288 <!-- You can override this target in the ../build.xml file. -->
1290 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
1291 <target name="-pre-compile-test-single">
1292 <!-- Empty placeholder for easier customization. -->
1293 <!-- You can override this target in the ../build.xml file. -->
1295 <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
1296 <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
1297 <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
1298 <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}"/>
1299 <copy todir="${build.test.classes.dir}">
1300 <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
1303 <target name="-post-compile-test-single">
1304 <!-- Empty placeholder for easier customization. -->
1305 <!-- You can override this target in the ../build.xml file. -->
1307 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
1309 =======================
1310 TEST EXECUTION SECTION
1311 =======================
1313 <target depends="init" if="have.tests" name="-pre-test-run">
1314 <mkdir dir="${build.test.results.dir}"/>
1316 <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
1317 <j2seproject3:test includes="${includes}" testincludes="**/*Test.java"/>
1319 <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
1320 <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
1322 <target depends="init" if="have.tests" name="test-report"/>
1323 <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
1324 <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
1325 <target depends="init" if="have.tests" name="-pre-test-run-single">
1326 <mkdir dir="${build.test.results.dir}"/>
1328 <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
1329 <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
1330 <j2seproject3:test excludes="" includes="${test.includes}" testincludes="${test.includes}"/>
1332 <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
1333 <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
1335 <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"/>
1336 <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single-method">
1337 <fail unless="test.class">Must select some files in the IDE or set test.class</fail>
1338 <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
1339 <j2seproject3:test excludes="" includes="${javac.includes}" testincludes="${test.class}" testmethods="${test.method}"/>
1341 <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method" if="have.tests" name="-post-test-run-single-method">
1342 <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
1344 <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"/>
1346 =======================
1347 TEST DEBUGGING SECTION
1348 =======================
1350 <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
1351 <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
1352 <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testincludes="${javac.includes}"/>
1354 <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test-method">
1355 <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
1356 <fail unless="test.method">Must select some method in the IDE or set test.method</fail>
1357 <j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testMethod="${test.method}" testincludes="${test.class}" testmethods="${test.method}"/>
1359 <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
1360 <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
1362 <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
1363 <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test-method" name="debug-test-method"/>
1364 <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
1365 <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
1367 <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
1369 =========================
1370 APPLET EXECUTION SECTION
1371 =========================
1373 <target depends="init,compile-single" name="run-applet">
1374 <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
1375 <j2seproject1:java classname="sun.applet.AppletViewer">
1377 <arg value="${applet.url}"/>
1379 </j2seproject1:java>
1382 =========================
1383 APPLET DEBUGGING SECTION
1384 =========================
1386 <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
1387 <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
1388 <j2seproject3:debug classname="sun.applet.AppletViewer">
1390 <arg value="${applet.url}"/>
1392 </j2seproject3:debug>
1394 <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
1400 <target name="-deps-clean-init" unless="built-clean.properties">
1401 <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
1402 <delete file="${built-clean.properties}" quiet="true"/>
1404 <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
1405 <echo level="warn" message="Cycle detected: addressbook-lib was already built"/>
1407 <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
1408 <mkdir dir="${build.dir}"/>
1409 <touch file="${built-clean.properties}" verbose="false"/>
1410 <property file="${built-clean.properties}" prefix="already.built.clean."/>
1411 <antcall target="-warn-already-built-clean"/>
1412 <propertyfile file="${built-clean.properties}">
1413 <entry key="${basedir}" value=""/>
1416 <target depends="init" name="-do-clean">
1417 <delete dir="${build.dir}"/>
1418 <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
1420 <target name="-post-clean">
1421 <!-- Empty placeholder for easier customization. -->
1422 <!-- You can override this target in the ../build.xml file. -->
1424 <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
1425 <target name="-check-call-dep">
1426 <property file="${call.built.properties}" prefix="already.built."/>
1427 <condition property="should.call.dep">
1430 <isset property="already.built.${call.subproject}"/>
1432 <available file="${call.script}"/>
1436 <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
1437 <ant antfile="${call.script}" inheritall="false" target="${call.target}">
1439 <propertyref prefix="transfer."/>
1440 <mapper from="transfer.*" to="*" type="glob"/>