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="nekurak.net-lib-impl">
23 <fail message="Please build using Ant 1.7.1 or higher.">
26 <antversion atleast="1.7.1"/>
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 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.4"/>
50 <property name="default.javac.target" value="1.4"/>
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"/>
56 <target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property" name="-do-init">
57 <available file="${manifest.file}" property="manifest.available"/>
58 <available file="${application.splash}" property="splashscreen.available"/>
59 <condition property="main.class.available">
61 <isset property="main.class"/>
63 <equals arg1="${main.class}" arg2="" trim="true"/>
67 <condition property="manifest.available+main.class">
69 <isset property="manifest.available"/>
70 <isset property="main.class.available"/>
73 <condition property="do.mkdist">
75 <isset property="libs.CopyLibs.classpath"/>
77 <istrue value="${mkdist.disabled}"/>
81 <condition property="manifest.available+main.class+mkdist.available">
83 <istrue value="${manifest.available+main.class}"/>
84 <isset property="do.mkdist"/>
87 <condition property="manifest.available+main.class+mkdist.available+splashscreen.available">
89 <istrue value="${manifest.available+main.class+mkdist.available}"/>
90 <istrue value="${splashscreen.available}"/>
93 <condition property="do.archive">
95 <istrue value="${jar.archive.disabled}"/>
98 <condition property="do.archive+manifest.available">
100 <isset property="manifest.available"/>
101 <istrue value="${do.archive}"/>
104 <condition property="do.archive+manifest.available+main.class">
106 <istrue value="${manifest.available+main.class}"/>
107 <istrue value="${do.archive}"/>
110 <condition property="do.archive+manifest.available+main.class+mkdist.available">
112 <istrue value="${manifest.available+main.class+mkdist.available}"/>
113 <istrue value="${do.archive}"/>
116 <condition property="do.archive+manifest.available+main.class+mkdist.available+splashscreen.available">
118 <istrue value="${manifest.available+main.class+mkdist.available+splashscreen.available}"/>
119 <istrue value="${do.archive}"/>
122 <condition property="have.tests">
124 <available file="${test.src.dir}"/>
127 <condition property="have.sources">
129 <available file="${src.dir}"/>
132 <condition property="netbeans.home+have.tests">
134 <isset property="netbeans.home"/>
135 <isset property="have.tests"/>
138 <condition property="no.javadoc.preview">
140 <isset property="javadoc.preview"/>
141 <isfalse value="${javadoc.preview}"/>
144 <property name="run.jvmargs" value=""/>
145 <property name="javac.compilerargs" value=""/>
146 <property name="work.dir" value="${basedir}"/>
147 <condition property="no.deps">
149 <istrue value="${no.dependencies}"/>
152 <property name="javac.debug" value="true"/>
153 <property name="javadoc.preview" value="true"/>
154 <property name="application.args" value=""/>
155 <property name="source.encoding" value="${file.encoding}"/>
156 <property name="runtime.encoding" value="${source.encoding}"/>
157 <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
159 <isset property="javadoc.encoding"/>
161 <equals arg1="${javadoc.encoding}" arg2=""/>
165 <property name="javadoc.encoding.used" value="${source.encoding}"/>
166 <property name="includes" value="**"/>
167 <property name="excludes" value=""/>
168 <property name="do.depend" value="false"/>
169 <condition property="do.depend.true">
170 <istrue value="${do.depend}"/>
172 <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
173 <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
174 <length length="0" string="${endorsed.classpath}" when="greater"/>
176 <property name="javac.fork" value="false"/>
177 <property name="jar.index" value="false"/>
178 <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
180 <target name="-post-init">
181 <!-- Empty placeholder for easier customization. -->
182 <!-- You can override this target in the ../build.xml file. -->
184 <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
185 <fail unless="src.dir">Must set src.dir</fail>
186 <fail unless="test.src.dir">Must set test.src.dir</fail>
187 <fail unless="build.dir">Must set build.dir</fail>
188 <fail unless="dist.dir">Must set dist.dir</fail>
189 <fail unless="build.classes.dir">Must set build.classes.dir</fail>
190 <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
191 <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
192 <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
193 <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
194 <fail unless="dist.jar">Must set dist.jar</fail>
196 <target name="-init-macrodef-property">
197 <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
198 <attribute name="name"/>
199 <attribute name="value"/>
201 <property name="@{name}" value="${@{value}}"/>
205 <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
206 <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
207 <attribute default="${src.dir}" name="srcdir"/>
208 <attribute default="${build.classes.dir}" name="destdir"/>
209 <attribute default="${javac.classpath}" name="classpath"/>
210 <attribute default="${javac.processorpath}" name="processorpath"/>
211 <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
212 <attribute default="${includes}" name="includes"/>
213 <attribute default="${excludes}" name="excludes"/>
214 <attribute default="${javac.debug}" name="debug"/>
215 <attribute default="${empty.dir}" name="sourcepath"/>
216 <attribute default="${empty.dir}" name="gensrcdir"/>
217 <element name="customize" optional="true"/>
219 <property location="${build.dir}/empty" name="empty.dir"/>
220 <mkdir dir="${empty.dir}"/>
221 <mkdir dir="@{apgeneratedsrcdir}"/>
222 <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}">
224 <dirset dir="@{gensrcdir}" erroronmissingdir="false">
229 <path path="@{classpath}"/>
231 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
232 <compilerarg line="${javac.compilerargs}"/>
233 <compilerarg value="-processorpath"/>
234 <compilerarg path="@{processorpath}:${empty.dir}"/>
235 <compilerarg line="${ap.processors.internal}"/>
236 <compilerarg line="${annotation.processing.processor.options}"/>
237 <compilerarg value="-s"/>
238 <compilerarg path="@{apgeneratedsrcdir}"/>
239 <compilerarg line="${ap.proc.none.internal}"/>
245 <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
246 <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
247 <attribute default="${src.dir}" name="srcdir"/>
248 <attribute default="${build.classes.dir}" name="destdir"/>
249 <attribute default="${javac.classpath}" name="classpath"/>
250 <attribute default="${javac.processorpath}" name="processorpath"/>
251 <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
252 <attribute default="${includes}" name="includes"/>
253 <attribute default="${excludes}" name="excludes"/>
254 <attribute default="${javac.debug}" name="debug"/>
255 <attribute default="${empty.dir}" name="sourcepath"/>
256 <attribute default="${empty.dir}" name="gensrcdir"/>
257 <element name="customize" optional="true"/>
259 <property location="${build.dir}/empty" name="empty.dir"/>
260 <mkdir dir="${empty.dir}"/>
261 <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}">
263 <dirset dir="@{gensrcdir}" erroronmissingdir="false">
268 <path path="@{classpath}"/>
270 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
271 <compilerarg line="${javac.compilerargs}"/>
277 <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
278 <macrodef name="depend" 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"/>
283 <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
285 <path path="@{classpath}"/>
290 <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
291 <attribute default="${build.classes.dir}" name="destdir"/>
293 <fail unless="javac.includes">Must set javac.includes</fail>
294 <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
296 <filelist dir="@{destdir}" files="${javac.includes}"/>
298 <globmapper from="*.java" to="*.class"/>
300 <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
301 <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
303 <files includesfile="${javac.includesfile.binary}"/>
305 <delete file="${javac.includesfile.binary}"/>
309 <target name="-init-macrodef-junit">
310 <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
311 <attribute default="${includes}" name="includes"/>
312 <attribute default="${excludes}" name="excludes"/>
313 <attribute default="**" name="testincludes"/>
315 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" showoutput="true" tempdir="${build.dir}">
316 <batchtest todir="${build.test.results.dir}">
317 <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
318 <filename name="@{testincludes}"/>
322 <path path="${run.test.classpath}"/>
325 <propertyref prefix="test-sys-prop."/>
326 <mapper from="test-sys-prop.*" to="*" type="glob"/>
328 <formatter type="brief" usefile="false"/>
329 <formatter type="xml"/>
330 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
331 <jvmarg line="${run.jvmargs}"/>
336 <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
337 <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
338 <attribute default="${main.class}" name="name"/>
339 <attribute default="${debug.classpath}" name="classpath"/>
340 <attribute default="" name="stopclassname"/>
342 <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
344 <path path="@{classpath}"/>
349 <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
350 <attribute default="${build.classes.dir}" name="dir"/>
353 <fileset dir="@{dir}" includes="${fix.classes}">
354 <include name="${fix.includes}*.class"/>
360 <target name="-init-debug-args">
361 <property name="version-output" value="java version "${ant.java.version}"/>
362 <condition property="have-jdk-older-than-1.4">
364 <contains string="${version-output}" substring="java version "1.0"/>
365 <contains string="${version-output}" substring="java version "1.1"/>
366 <contains string="${version-output}" substring="java version "1.2"/>
367 <contains string="${version-output}" substring="java version "1.3"/>
370 <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
371 <istrue value="${have-jdk-older-than-1.4}"/>
373 <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
374 <os family="windows"/>
376 <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
377 <isset property="debug.transport"/>
380 <target depends="-init-debug-args" name="-init-macrodef-debug">
381 <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
382 <attribute default="${main.class}" name="classname"/>
383 <attribute default="${debug.classpath}" name="classpath"/>
384 <element name="customize" optional="true"/>
386 <java classname="@{classname}" dir="${work.dir}" fork="true">
387 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
388 <jvmarg line="${debug-args-line}"/>
389 <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
390 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
391 <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
392 <jvmarg line="${run.jvmargs}"/>
394 <path path="@{classpath}"/>
397 <propertyref prefix="run-sys-prop."/>
398 <mapper from="run-sys-prop.*" to="*" type="glob"/>
405 <target name="-init-macrodef-java">
406 <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
407 <attribute default="${main.class}" name="classname"/>
408 <attribute default="${run.classpath}" name="classpath"/>
409 <element name="customize" optional="true"/>
411 <java classname="@{classname}" dir="${work.dir}" fork="true">
412 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
413 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
414 <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
415 <jvmarg line="${run.jvmargs}"/>
417 <path path="@{classpath}"/>
420 <propertyref prefix="run-sys-prop."/>
421 <mapper from="run-sys-prop.*" to="*" type="glob"/>
428 <target name="-init-macrodef-copylibs">
429 <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
430 <element name="customize" optional="true"/>
432 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
433 <pathconvert property="run.classpath.without.build.classes.dir">
434 <path path="${run.classpath}"/>
435 <map from="${build.classes.dir.resolved}" to=""/>
437 <pathconvert pathsep=" " property="jar.classpath">
438 <path path="${run.classpath.without.build.classes.dir}"/>
441 <globmapper from="*" to="lib/*"/>
444 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
445 <copylibs compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}" manifest="${manifest.file}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
446 <fileset dir="${build.classes.dir}"/>
448 <attribute name="Class-Path" value="${jar.classpath}"/>
455 <target name="-init-presetdef-jar">
456 <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
457 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
458 <j2seproject1:fileset dir="${build.classes.dir}"/>
462 <target name="-init-ap-cmdline-properties">
463 <property name="annotation.processing.enabled" value="true"/>
464 <property name="annotation.processing.processors.list" value=""/>
465 <property name="annotation.processing.processor.options" value=""/>
466 <property name="annotation.processing.run.all.processors" value="true"/>
467 <property name="javac.processorpath" value="${javac.classpath}"/>
468 <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
469 <condition property="ap.supported.internal" value="true">
471 <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
475 <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
476 <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
477 <isfalse value="${annotation.processing.run.all.processors}"/>
479 <condition else="" property="ap.proc.none.internal" value="-proc:none">
480 <isfalse value="${annotation.processing.enabled}"/>
483 <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
484 <property name="ap.cmd.line.internal" value=""/>
486 <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init,-post-init,-init-check,-init-macrodef-property,-init-macrodef-javac,-init-macrodef-junit,-init-macrodef-nbjpda,-init-macrodef-debug,-init-macrodef-java,-init-presetdef-jar,-init-ap-cmdline" name="init"/>
492 <target name="-deps-jar-init" unless="built-jar.properties">
493 <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
494 <delete file="${built-jar.properties}" quiet="true"/>
496 <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
497 <echo level="warn" message="Cycle detected: nekurak.net-lib was already built"/>
499 <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
500 <mkdir dir="${build.dir}"/>
501 <touch file="${built-jar.properties}" verbose="false"/>
502 <property file="${built-jar.properties}" prefix="already.built.jar."/>
503 <antcall target="-warn-already-built-jar"/>
504 <propertyfile file="${built-jar.properties}">
505 <entry key="${basedir}" value=""/>
508 <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
509 <target depends="init" name="-check-automatic-build">
510 <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
512 <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
513 <antcall target="clean"/>
515 <target depends="init,deps-jar" name="-pre-pre-compile">
516 <mkdir dir="${build.classes.dir}"/>
518 <target name="-pre-compile">
519 <!-- Empty placeholder for easier customization. -->
520 <!-- You can override this target in the ../build.xml file. -->
522 <target if="do.depend.true" name="-compile-depend">
523 <pathconvert property="build.generated.subdirs">
524 <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
528 <j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
530 <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
531 <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
532 <copy todir="${build.classes.dir}">
533 <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
536 <target if="has.persistence.xml" name="-copy-persistence-xml">
537 <mkdir dir="${build.classes.dir}/META-INF"/>
538 <copy todir="${build.classes.dir}/META-INF">
539 <fileset dir="${meta.inf.dir}" includes="persistence.xml"/>
542 <target name="-post-compile">
543 <!-- Empty placeholder for easier customization. -->
544 <!-- You can override this target in the ../build.xml file. -->
546 <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
547 <target name="-pre-compile-single">
548 <!-- Empty placeholder for easier customization. -->
549 <!-- You can override this target in the ../build.xml file. -->
551 <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
552 <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
553 <j2seproject3:force-recompile/>
554 <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}"/>
556 <target name="-post-compile-single">
557 <!-- Empty placeholder for easier customization. -->
558 <!-- You can override this target in the ../build.xml file. -->
560 <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
566 <target depends="init" name="-pre-pre-jar">
567 <dirname file="${dist.jar}" property="dist.jar.dir"/>
568 <mkdir dir="${dist.jar.dir}"/>
570 <target name="-pre-jar">
571 <!-- Empty placeholder for easier customization. -->
572 <!-- You can override this target in the ../build.xml file. -->
574 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive" name="-do-jar-without-manifest" unless="manifest.available">
577 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class">
578 <j2seproject1:jar manifest="${manifest.file}"/>
580 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available+main.class" name="-do-jar-with-mainclass" unless="manifest.available+main.class+mkdist.available">
581 <j2seproject1:jar manifest="${manifest.file}">
582 <j2seproject1:manifest>
583 <j2seproject1:attribute name="Main-Class" value="${main.class}"/>
584 </j2seproject1:manifest>
586 <echo>To run this application from the command line without Ant, try:</echo>
587 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
588 <property location="${dist.jar}" name="dist.jar.resolved"/>
589 <pathconvert property="run.classpath.with.dist.jar">
590 <path path="${run.classpath}"/>
591 <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
593 <echo>java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
595 <target depends="init,compile,-pre-pre-jar,-pre-jar,-init-macrodef-copylibs" if="do.archive+manifest.available+main.class+mkdist.available+splashscreen.available" name="-do-jar-with-libraries-and-splashscreen">
596 <basename file="${application.splash}" property="splashscreen.basename"/>
597 <mkdir dir="${build.classes.dir}/META-INF"/>
598 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
599 <j2seproject3:copylibs>
601 <attribute name="Main-Class" value="${main.class}"/>
602 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
604 </j2seproject3:copylibs>
605 <echo>To run this application from the command line without Ant, try:</echo>
606 <property location="${dist.jar}" name="dist.jar.resolved"/>
607 <echo>java -jar "${dist.jar.resolved}"</echo>
609 <target depends="init,compile,-pre-pre-jar,-pre-jar,-init-macrodef-copylibs" if="do.archive+manifest.available+main.class+mkdist.available" name="-do-jar-with-libraries" unless="splashscreen.available">
610 <j2seproject3:copylibs>
612 <attribute name="Main-Class" value="${main.class}"/>
614 </j2seproject3:copylibs>
615 <echo>To run this application from the command line without Ant, try:</echo>
616 <property location="${dist.jar}" name="dist.jar.resolved"/>
617 <echo>java -jar "${dist.jar.resolved}"</echo>
619 <target name="-post-jar">
620 <!-- Empty placeholder for easier customization. -->
621 <!-- You can override this target in the ../build.xml file. -->
623 <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries-and-splashscreen,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/>
629 <target depends="init,compile" description="Run a main class." name="run">
632 <arg line="${application.args}"/>
636 <target name="-do-not-recompile">
637 <property name="javac.includes.binary" value=""/>
639 <target depends="init,compile-single" name="run-single">
640 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
641 <j2seproject1:java classname="${run.class}"/>
643 <target depends="init,compile-test-single" name="run-test-with-main">
644 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
645 <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
652 <target depends="init" if="netbeans.home" name="-debug-start-debugger">
653 <j2seproject1:nbjpdastart name="${debug.class}"/>
655 <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
656 <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
658 <target depends="init,compile" name="-debug-start-debuggee">
661 <arg line="${application.args}"/>
663 </j2seproject3:debug>
665 <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
666 <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
667 <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
669 <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
670 <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
671 <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
672 <j2seproject3:debug classname="${debug.class}"/>
674 <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
675 <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
676 <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
677 <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
679 <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
680 <target depends="init" name="-pre-debug-fix">
681 <fail unless="fix.includes">Must set fix.includes</fail>
682 <property name="javac.includes" value="${fix.includes}.java"/>
684 <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
685 <j2seproject1:nbjpdareload/>
687 <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
693 <target depends="init" if="have.sources" name="-javadoc-build">
694 <mkdir dir="${dist.javadoc.dir}"/>
695 <javadoc additionalparam="${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
697 <path path="${javac.classpath}"/>
699 <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
700 <filename name="**/*.java"/>
702 <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
703 <include name="**/*.java"/>
706 <copy todir="${dist.javadoc.dir}">
707 <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
708 <filename name="**/doc-files/**"/>
710 <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
711 <include name="**/doc-files/**"/>
715 <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
716 <nbbrowse file="${dist.javadoc.dir}/index.html"/>
718 <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
720 =========================
721 JUNIT COMPILATION SECTION
722 =========================
724 <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
725 <mkdir dir="${build.test.classes.dir}"/>
727 <target name="-pre-compile-test">
728 <!-- Empty placeholder for easier customization. -->
729 <!-- You can override this target in the ../build.xml file. -->
731 <target if="do.depend.true" name="-compile-test-depend">
732 <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
734 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
735 <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}"/>
736 <copy todir="${build.test.classes.dir}">
737 <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
740 <target name="-post-compile-test">
741 <!-- Empty placeholder for easier customization. -->
742 <!-- You can override this target in the ../build.xml file. -->
744 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
745 <target name="-pre-compile-test-single">
746 <!-- Empty placeholder for easier customization. -->
747 <!-- You can override this target in the ../build.xml file. -->
749 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
750 <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
751 <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
752 <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}"/>
753 <copy todir="${build.test.classes.dir}">
754 <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
757 <target name="-post-compile-test-single">
758 <!-- Empty placeholder for easier customization. -->
759 <!-- You can override this target in the ../build.xml file. -->
761 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
763 =======================
764 JUNIT EXECUTION SECTION
765 =======================
767 <target depends="init" if="have.tests" name="-pre-test-run">
768 <mkdir dir="${build.test.results.dir}"/>
770 <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
771 <j2seproject3:junit testincludes="**/*Test.java"/>
773 <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
774 <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
776 <target depends="init" if="have.tests" name="test-report"/>
777 <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
778 <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
779 <target depends="init" if="have.tests" name="-pre-test-run-single">
780 <mkdir dir="${build.test.results.dir}"/>
782 <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
783 <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
784 <j2seproject3:junit excludes="" includes="${test.includes}"/>
786 <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
787 <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
789 <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"/>
791 =======================
792 JUNIT DEBUGGING SECTION
793 =======================
795 <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
796 <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
797 <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
798 <delete file="${test.report.file}"/>
799 <mkdir dir="${build.test.results.dir}"/>
800 <j2seproject3:debug classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner" classpath="${ant.home}/lib/ant.jar:${ant.home}/lib/ant-junit.jar:${debug.test.classpath}">
803 <propertyref prefix="test-sys-prop."/>
804 <mapper from="test-sys-prop.*" to="*" type="glob"/>
806 <arg value="${test.class}"/>
807 <arg value="showoutput=true"/>
808 <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
809 <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
811 </j2seproject3:debug>
813 <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
814 <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
816 <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
817 <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
818 <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
820 <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
822 =========================
823 APPLET EXECUTION SECTION
824 =========================
826 <target depends="init,compile-single" name="run-applet">
827 <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
828 <j2seproject1:java classname="sun.applet.AppletViewer">
830 <arg value="${applet.url}"/>
835 =========================
836 APPLET DEBUGGING SECTION
837 =========================
839 <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
840 <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
841 <j2seproject3:debug classname="sun.applet.AppletViewer">
843 <arg value="${applet.url}"/>
845 </j2seproject3:debug>
847 <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
853 <target name="-deps-clean-init" unless="built-clean.properties">
854 <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
855 <delete file="${built-clean.properties}" quiet="true"/>
857 <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
858 <echo level="warn" message="Cycle detected: nekurak.net-lib was already built"/>
860 <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
861 <mkdir dir="${build.dir}"/>
862 <touch file="${built-clean.properties}" verbose="false"/>
863 <property file="${built-clean.properties}" prefix="already.built.clean."/>
864 <antcall target="-warn-already-built-clean"/>
865 <propertyfile file="${built-clean.properties}">
866 <entry key="${basedir}" value=""/>
869 <target depends="init" name="-do-clean">
870 <delete dir="${build.dir}"/>
871 <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
873 <target name="-post-clean">
874 <!-- Empty placeholder for easier customization. -->
875 <!-- You can override this target in the ../build.xml file. -->
877 <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
878 <target name="-check-call-dep">
879 <property file="${call.built.properties}" prefix="already.built."/>
880 <condition property="should.call.dep">
882 <isset property="already.built.${call.subproject}"/>
886 <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
887 <ant antfile="${call.script}" inheritall="false" target="${call.target}">
889 <propertyref prefix="transfer."/>
890 <mapper from="transfer.*" to="*" type="glob"/>