První fungující verze doplňku pro jEdit.
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="rozsirene-atributy-jedit-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 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 <condition property="splashscreen.available">
61 <equals arg1="${application.splash}" arg2="" trim="true"/>
63 <available file="${application.splash}"/>
66 <condition property="main.class.available">
68 <isset property="main.class"/>
70 <equals arg1="${main.class}" arg2="" trim="true"/>
74 <condition property="manifest.available+main.class">
76 <isset property="manifest.available"/>
77 <isset property="main.class.available"/>
80 <condition property="do.archive">
82 <istrue value="${jar.archive.disabled}"/>
85 <condition property="do.mkdist">
87 <isset property="do.archive"/>
88 <isset property="libs.CopyLibs.classpath"/>
90 <istrue value="${mkdist.disabled}"/>
94 <condition property="manifest.available+main.class+mkdist.available">
96 <istrue value="${manifest.available+main.class}"/>
97 <isset property="do.mkdist"/>
100 <condition property="do.archive+manifest.available">
102 <isset property="manifest.available"/>
103 <istrue value="${do.archive}"/>
106 <condition property="do.archive+main.class.available">
108 <isset property="main.class.available"/>
109 <istrue value="${do.archive}"/>
112 <condition property="do.archive+splashscreen.available">
114 <isset property="splashscreen.available"/>
115 <istrue value="${do.archive}"/>
118 <condition property="do.archive+manifest.available+main.class">
120 <istrue value="${manifest.available+main.class}"/>
121 <istrue value="${do.archive}"/>
124 <condition property="manifest.available-mkdist.available">
126 <istrue value="${manifest.available}"/>
127 <isset property="do.mkdist"/>
130 <condition property="manifest.available+main.class-mkdist.available">
132 <istrue value="${manifest.available+main.class}"/>
133 <isset property="do.mkdist"/>
136 <condition property="have.tests">
138 <available file="${test.src.dir}"/>
141 <condition property="have.sources">
143 <available file="${src.dir}"/>
146 <condition property="netbeans.home+have.tests">
148 <isset property="netbeans.home"/>
149 <isset property="have.tests"/>
152 <condition property="no.javadoc.preview">
154 <isset property="javadoc.preview"/>
155 <isfalse value="${javadoc.preview}"/>
158 <property name="run.jvmargs" value=""/>
159 <property name="javac.compilerargs" value=""/>
160 <property name="work.dir" value="${basedir}"/>
161 <condition property="no.deps">
163 <istrue value="${no.dependencies}"/>
166 <property name="javac.debug" value="true"/>
167 <property name="javadoc.preview" value="true"/>
168 <property name="application.args" value=""/>
169 <property name="source.encoding" value="${file.encoding}"/>
170 <property name="runtime.encoding" value="${source.encoding}"/>
171 <condition property="javadoc.encoding.used" value="${javadoc.encoding}">
173 <isset property="javadoc.encoding"/>
175 <equals arg1="${javadoc.encoding}" arg2=""/>
179 <property name="javadoc.encoding.used" value="${source.encoding}"/>
180 <property name="includes" value="**"/>
181 <property name="excludes" value=""/>
182 <property name="do.depend" value="false"/>
183 <condition property="do.depend.true">
184 <istrue value="${do.depend}"/>
186 <path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
187 <condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
188 <length length="0" string="${endorsed.classpath}" when="greater"/>
190 <condition else="false" property="jdkBug6558476">
192 <matches pattern="1\.[56]" string="${java.specification.version}"/>
198 <property name="javac.fork" value="${jdkBug6558476}"/>
199 <property name="jar.index" value="false"/>
200 <property name="jar.index.metainf" value="${jar.index}"/>
201 <property name="copylibs.rebase" value="true"/>
202 <available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
204 <target name="-post-init">
205 <!-- Empty placeholder for easier customization. -->
206 <!-- You can override this target in the ../build.xml file. -->
208 <target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
209 <fail unless="src.dir">Must set src.dir</fail>
210 <fail unless="test.src.dir">Must set test.src.dir</fail>
211 <fail unless="build.dir">Must set build.dir</fail>
212 <fail unless="dist.dir">Must set dist.dir</fail>
213 <fail unless="build.classes.dir">Must set build.classes.dir</fail>
214 <fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
215 <fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
216 <fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
217 <fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
218 <fail unless="dist.jar">Must set dist.jar</fail>
220 <target name="-init-macrodef-property">
221 <macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
222 <attribute name="name"/>
223 <attribute name="value"/>
225 <property name="@{name}" value="${@{value}}"/>
229 <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors">
230 <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
231 <attribute default="${src.dir}" name="srcdir"/>
232 <attribute default="${build.classes.dir}" name="destdir"/>
233 <attribute default="${javac.classpath}" name="classpath"/>
234 <attribute default="${javac.processorpath}" name="processorpath"/>
235 <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
236 <attribute default="${includes}" name="includes"/>
237 <attribute default="${excludes}" name="excludes"/>
238 <attribute default="${javac.debug}" name="debug"/>
239 <attribute default="${empty.dir}" name="sourcepath"/>
240 <attribute default="${empty.dir}" name="gensrcdir"/>
241 <element name="customize" optional="true"/>
243 <property location="${build.dir}/empty" name="empty.dir"/>
244 <mkdir dir="${empty.dir}"/>
245 <mkdir dir="@{apgeneratedsrcdir}"/>
246 <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}">
248 <dirset dir="@{gensrcdir}" erroronmissingdir="false">
253 <path path="@{classpath}"/>
255 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
256 <compilerarg line="${javac.compilerargs}"/>
257 <compilerarg value="-processorpath"/>
258 <compilerarg path="@{processorpath}:${empty.dir}"/>
259 <compilerarg line="${ap.processors.internal}"/>
260 <compilerarg line="${annotation.processing.processor.options}"/>
261 <compilerarg value="-s"/>
262 <compilerarg path="@{apgeneratedsrcdir}"/>
263 <compilerarg line="${ap.proc.none.internal}"/>
269 <target depends="-init-ap-cmdline-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
270 <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
271 <attribute default="${src.dir}" name="srcdir"/>
272 <attribute default="${build.classes.dir}" name="destdir"/>
273 <attribute default="${javac.classpath}" name="classpath"/>
274 <attribute default="${javac.processorpath}" name="processorpath"/>
275 <attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
276 <attribute default="${includes}" name="includes"/>
277 <attribute default="${excludes}" name="excludes"/>
278 <attribute default="${javac.debug}" name="debug"/>
279 <attribute default="${empty.dir}" name="sourcepath"/>
280 <attribute default="${empty.dir}" name="gensrcdir"/>
281 <element name="customize" optional="true"/>
283 <property location="${build.dir}/empty" name="empty.dir"/>
284 <mkdir dir="${empty.dir}"/>
285 <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}">
287 <dirset dir="@{gensrcdir}" erroronmissingdir="false">
292 <path path="@{classpath}"/>
294 <compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
295 <compilerarg line="${javac.compilerargs}"/>
301 <target depends="-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
302 <macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
303 <attribute default="${src.dir}" name="srcdir"/>
304 <attribute default="${build.classes.dir}" name="destdir"/>
305 <attribute default="${javac.classpath}" name="classpath"/>
307 <depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
309 <path path="@{classpath}"/>
314 <macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
315 <attribute default="${build.classes.dir}" name="destdir"/>
317 <fail unless="javac.includes">Must set javac.includes</fail>
318 <pathconvert pathsep="${line.separator}" property="javac.includes.binary">
320 <filelist dir="@{destdir}" files="${javac.includes}"/>
322 <globmapper from="*.java" to="*.class"/>
324 <tempfile deleteonexit="true" property="javac.includesfile.binary"/>
325 <echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
327 <files includesfile="${javac.includesfile.binary}"/>
330 <fileset file="${javac.includesfile.binary}"/>
335 <target name="-init-macrodef-junit">
336 <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
337 <attribute default="${includes}" name="includes"/>
338 <attribute default="${excludes}" name="excludes"/>
339 <attribute default="**" name="testincludes"/>
341 <property name="junit.forkmode" value="perTest"/>
342 <junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
343 <batchtest todir="${build.test.results.dir}">
344 <fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
345 <filename name="@{testincludes}"/>
349 <path path="${run.test.classpath}"/>
352 <propertyref prefix="test-sys-prop."/>
353 <mapper from="test-sys-prop.*" to="*" type="glob"/>
355 <formatter type="brief" usefile="false"/>
356 <formatter type="xml"/>
357 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
358 <jvmarg value="-ea"/>
359 <jvmarg line="${run.jvmargs}"/>
364 <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" name="profile-init"/>
365 <target name="-profile-pre-init">
366 <!-- Empty placeholder for easier customization. -->
367 <!-- You can override this target in the ../build.xml file. -->
369 <target name="-profile-post-init">
370 <!-- Empty placeholder for easier customization. -->
371 <!-- You can override this target in the ../build.xml file. -->
373 <target name="-profile-init-macrodef-profile">
374 <macrodef name="resolve">
375 <attribute name="name"/>
376 <attribute name="value"/>
378 <property name="@{name}" value="${env.@{value}}"/>
381 <macrodef name="profile">
382 <attribute default="${main.class}" name="classname"/>
383 <element name="customize" optional="true"/>
385 <property environment="env"/>
386 <resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
387 <java classname="@{classname}" dir="${profiler.info.dir}" fork="true" jvm="${profiler.info.jvm}">
388 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
389 <jvmarg value="${profiler.info.jvmargs.agent}"/>
390 <jvmarg line="${profiler.info.jvmargs}"/>
391 <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
392 <arg line="${application.args}"/>
394 <path path="${run.classpath}"/>
397 <propertyref prefix="run-sys-prop."/>
398 <mapper from="run-sys-prop.*" to="*" type="glob"/>
405 <target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" name="-profile-init-check">
406 <fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
407 <fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
409 <target depends="-init-debug-args" name="-init-macrodef-nbjpda">
410 <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
411 <attribute default="${main.class}" name="name"/>
412 <attribute default="${debug.classpath}" name="classpath"/>
413 <attribute default="" name="stopclassname"/>
415 <nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
417 <path path="@{classpath}"/>
422 <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
423 <attribute default="${build.classes.dir}" name="dir"/>
426 <fileset dir="@{dir}" includes="${fix.classes}">
427 <include name="${fix.includes}*.class"/>
433 <target name="-init-debug-args">
434 <property name="version-output" value="java version "${ant.java.version}"/>
435 <condition property="have-jdk-older-than-1.4">
437 <contains string="${version-output}" substring="java version "1.0"/>
438 <contains string="${version-output}" substring="java version "1.1"/>
439 <contains string="${version-output}" substring="java version "1.2"/>
440 <contains string="${version-output}" substring="java version "1.3"/>
443 <condition else="-Xdebug" property="debug-args-line" value="-Xdebug -Xnoagent -Djava.compiler=none">
444 <istrue value="${have-jdk-older-than-1.4}"/>
446 <condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
447 <os family="windows"/>
449 <condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
450 <isset property="debug.transport"/>
453 <target depends="-init-debug-args" name="-init-macrodef-debug">
454 <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
455 <attribute default="${main.class}" name="classname"/>
456 <attribute default="${debug.classpath}" name="classpath"/>
457 <element name="customize" optional="true"/>
459 <java classname="@{classname}" dir="${work.dir}" fork="true">
460 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
461 <jvmarg line="${debug-args-line}"/>
462 <jvmarg value="-Xrunjdwp:transport=${debug-transport},address=${jpda.address}"/>
463 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
464 <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
465 <jvmarg line="${run.jvmargs}"/>
467 <path path="@{classpath}"/>
470 <propertyref prefix="run-sys-prop."/>
471 <mapper from="run-sys-prop.*" to="*" type="glob"/>
478 <target name="-init-macrodef-java">
479 <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
480 <attribute default="${main.class}" name="classname"/>
481 <attribute default="${run.classpath}" name="classpath"/>
482 <element name="customize" optional="true"/>
484 <java classname="@{classname}" dir="${work.dir}" fork="true">
485 <jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
486 <jvmarg value="-Dfile.encoding=${runtime.encoding}"/>
487 <redirector errorencoding="${runtime.encoding}" inputencoding="${runtime.encoding}" outputencoding="${runtime.encoding}"/>
488 <jvmarg line="${run.jvmargs}"/>
490 <path path="@{classpath}"/>
493 <propertyref prefix="run-sys-prop."/>
494 <mapper from="run-sys-prop.*" to="*" type="glob"/>
501 <target name="-init-macrodef-copylibs">
502 <macrodef name="copylibs" uri="http://www.netbeans.org/ns/j2se-project/3">
503 <attribute default="${manifest.file}" name="manifest"/>
504 <element name="customize" optional="true"/>
506 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
507 <pathconvert property="run.classpath.without.build.classes.dir">
508 <path path="${run.classpath}"/>
509 <map from="${build.classes.dir.resolved}" to=""/>
511 <pathconvert pathsep=" " property="jar.classpath">
512 <path path="${run.classpath.without.build.classes.dir}"/>
515 <globmapper from="*" to="lib/*"/>
518 <taskdef classname="org.netbeans.modules.java.j2seproject.copylibstask.CopyLibs" classpath="${libs.CopyLibs.classpath}" name="copylibs"/>
519 <copylibs compress="${jar.compress}" index="${jar.index}" indexMetaInf="${jar.index.metainf}" jarfile="${dist.jar}" manifest="@{manifest}" rebase="${copylibs.rebase}" runtimeclasspath="${run.classpath.without.build.classes.dir}">
520 <fileset dir="${build.classes.dir}"/>
522 <attribute name="Class-Path" value="${jar.classpath}"/>
529 <target name="-init-presetdef-jar">
530 <presetdef name="jar" uri="http://www.netbeans.org/ns/j2se-project/1">
531 <jar compress="${jar.compress}" index="${jar.index}" jarfile="${dist.jar}">
532 <j2seproject1:fileset dir="${build.classes.dir}"/>
536 <target name="-init-ap-cmdline-properties">
537 <property name="annotation.processing.enabled" value="true"/>
538 <property name="annotation.processing.processors.list" value=""/>
539 <property name="annotation.processing.processor.options" value=""/>
540 <property name="annotation.processing.run.all.processors" value="true"/>
541 <property name="javac.processorpath" value="${javac.classpath}"/>
542 <property name="javac.test.processorpath" value="${javac.test.classpath}"/>
543 <condition property="ap.supported.internal" value="true">
545 <matches pattern="1\.[0-5](\..*)?" string="${javac.source}"/>
549 <target depends="-init-ap-cmdline-properties" if="ap.supported.internal" name="-init-ap-cmdline-supported">
550 <condition else="" property="ap.processors.internal" value="-processor ${annotation.processing.processors.list}">
551 <isfalse value="${annotation.processing.run.all.processors}"/>
553 <condition else="" property="ap.proc.none.internal" value="-proc:none">
554 <isfalse value="${annotation.processing.enabled}"/>
557 <target depends="-init-ap-cmdline-properties,-init-ap-cmdline-supported" name="-init-ap-cmdline">
558 <property name="ap.cmd.line.internal" value=""/>
560 <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"/>
566 <target name="-deps-jar-init" unless="built-jar.properties">
567 <property location="${build.dir}/built-jar.properties" name="built-jar.properties"/>
568 <delete file="${built-jar.properties}" quiet="true"/>
570 <target if="already.built.jar.${basedir}" name="-warn-already-built-jar">
571 <echo level="warn" message="Cycle detected: rozsirene-atributy-jedit was already built"/>
573 <target depends="init,-deps-jar-init" name="deps-jar" unless="no.deps">
574 <mkdir dir="${build.dir}"/>
575 <touch file="${built-jar.properties}" verbose="false"/>
576 <property file="${built-jar.properties}" prefix="already.built.jar."/>
577 <antcall target="-warn-already-built-jar"/>
578 <propertyfile file="${built-jar.properties}">
579 <entry key="${basedir}" value=""/>
581 <antcall target="-maybe-call-dep">
582 <param name="call.built.properties" value="${built-jar.properties}"/>
583 <param location="${project.rozsirene-atributy}" name="call.subproject"/>
584 <param location="${project.rozsirene-atributy}/build.xml" name="call.script"/>
585 <param name="call.target" value="jar"/>
586 <param name="transfer.built-jar.properties" value="${built-jar.properties}"/>
589 <target depends="init,-check-automatic-build,-clean-after-automatic-build" name="-verify-automatic-build"/>
590 <target depends="init" name="-check-automatic-build">
591 <available file="${build.classes.dir}/.netbeans_automatic_build" property="netbeans.automatic.build"/>
593 <target depends="init" if="netbeans.automatic.build" name="-clean-after-automatic-build">
594 <antcall target="clean"/>
596 <target depends="init,deps-jar" name="-pre-pre-compile">
597 <mkdir dir="${build.classes.dir}"/>
599 <target name="-pre-compile">
600 <!-- Empty placeholder for easier customization. -->
601 <!-- You can override this target in the ../build.xml file. -->
603 <target if="do.depend.true" name="-compile-depend">
604 <pathconvert property="build.generated.subdirs">
605 <dirset dir="${build.generated.sources.dir}" erroronmissingdir="false">
609 <j2seproject3:depend srcdir="${src.dir}:${build.generated.subdirs}"/>
611 <target depends="init,deps-jar,-pre-pre-compile,-pre-compile, -copy-persistence-xml,-compile-depend" if="have.sources" name="-do-compile">
612 <j2seproject3:javac gensrcdir="${build.generated.sources.dir}"/>
613 <copy todir="${build.classes.dir}">
614 <fileset dir="${src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
617 <target if="has.persistence.xml" name="-copy-persistence-xml">
618 <mkdir dir="${build.classes.dir}/META-INF"/>
619 <copy todir="${build.classes.dir}/META-INF">
620 <fileset dir="${meta.inf.dir}" includes="persistence.xml"/>
623 <target name="-post-compile">
624 <!-- Empty placeholder for easier customization. -->
625 <!-- You can override this target in the ../build.xml file. -->
627 <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile,-do-compile,-post-compile" description="Compile project." name="compile"/>
628 <target name="-pre-compile-single">
629 <!-- Empty placeholder for easier customization. -->
630 <!-- You can override this target in the ../build.xml file. -->
632 <target depends="init,deps-jar,-pre-pre-compile" name="-do-compile-single">
633 <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
634 <j2seproject3:force-recompile/>
635 <j2seproject3:javac excludes="" gensrcdir="${build.generated.sources.dir}" includes="${javac.includes}" sourcepath="${src.dir}"/>
637 <target name="-post-compile-single">
638 <!-- Empty placeholder for easier customization. -->
639 <!-- You can override this target in the ../build.xml file. -->
641 <target depends="init,deps-jar,-verify-automatic-build,-pre-pre-compile,-pre-compile-single,-do-compile-single,-post-compile-single" name="compile-single"/>
647 <target depends="init" name="-pre-pre-jar">
648 <dirname file="${dist.jar}" property="dist.jar.dir"/>
649 <mkdir dir="${dist.jar.dir}"/>
651 <target name="-pre-jar">
652 <!-- Empty placeholder for easier customization. -->
653 <!-- You can override this target in the ../build.xml file. -->
655 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive" name="-do-jar-without-manifest" unless="manifest.available-mkdist.available">
658 <target depends="init,compile,-pre-pre-jar,-pre-jar" if="do.archive+manifest.available" name="-do-jar-with-manifest" unless="manifest.available+main.class-mkdist.available">
659 <j2seproject1:jar manifest="${manifest.file}"/>
661 <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">
662 <j2seproject1:jar manifest="${manifest.file}">
663 <j2seproject1:manifest>
664 <j2seproject1:attribute name="Main-Class" value="${main.class}"/>
665 </j2seproject1:manifest>
667 <echo level="info">To run this application from the command line without Ant, try:</echo>
668 <property location="${build.classes.dir}" name="build.classes.dir.resolved"/>
669 <property location="${dist.jar}" name="dist.jar.resolved"/>
670 <pathconvert property="run.classpath.with.dist.jar">
671 <path path="${run.classpath}"/>
672 <map from="${build.classes.dir.resolved}" to="${dist.jar.resolved}"/>
674 <echo level="info">java -cp "${run.classpath.with.dist.jar}" ${main.class}</echo>
676 <target depends="init" if="do.archive" name="-do-jar-with-libraries-create-manifest" unless="manifest.available">
677 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
678 <touch file="${tmp.manifest.file}" verbose="false"/>
680 <target depends="init" if="do.archive+manifest.available" name="-do-jar-with-libraries-copy-manifest">
681 <tempfile deleteonexit="true" destdir="${build.dir}" property="tmp.manifest.file"/>
682 <copy file="${manifest.file}" tofile="${tmp.manifest.file}"/>
684 <target depends="init,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest" if="do.archive+main.class.available" name="-do-jar-with-libraries-set-main">
685 <manifest file="${tmp.manifest.file}" mode="update">
686 <attribute name="Main-Class" value="${main.class}"/>
689 <target depends="init,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest" if="do.archive+splashscreen.available" name="-do-jar-with-libraries-set-splashscreen">
690 <basename file="${application.splash}" property="splashscreen.basename"/>
691 <mkdir dir="${build.classes.dir}/META-INF"/>
692 <copy failonerror="false" file="${application.splash}" todir="${build.classes.dir}/META-INF"/>
693 <manifest file="${tmp.manifest.file}" mode="update">
694 <attribute name="SplashScreen-Image" value="META-INF/${splashscreen.basename}"/>
697 <target depends="init,-init-macrodef-copylibs,compile,-pre-pre-jar,-pre-jar,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest,-do-jar-with-libraries-set-main,-do-jar-with-libraries-set-splashscreen" if="do.mkdist" name="-do-jar-with-libraries-pack">
698 <j2seproject3:copylibs manifest="${tmp.manifest.file}"/>
699 <echo level="info">To run this application from the command line without Ant, try:</echo>
700 <property location="${dist.jar}" name="dist.jar.resolved"/>
701 <echo level="info">java -jar "${dist.jar.resolved}"</echo>
703 <target depends="-do-jar-with-libraries-pack" if="do.archive" name="-do-jar-with-libraries-delete-manifest">
705 <fileset file="${tmp.manifest.file}"/>
708 <target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-with-libraries-create-manifest,-do-jar-with-libraries-copy-manifest,-do-jar-with-libraries-set-main,-do-jar-with-libraries-set-splashscreen,-do-jar-with-libraries-pack,-do-jar-with-libraries-delete-manifest" name="-do-jar-with-libraries"/>
709 <target name="-post-jar">
710 <!-- Empty placeholder for easier customization. -->
711 <!-- You can override this target in the ../build.xml file. -->
713 <target depends="init,compile,-pre-jar,-do-jar-with-manifest,-do-jar-without-manifest,-do-jar-with-mainclass,-do-jar-with-libraries,-post-jar" description="Build JAR." name="jar"/>
719 <target depends="init,compile" description="Run a main class." name="run">
722 <arg line="${application.args}"/>
726 <target name="-do-not-recompile">
727 <property name="javac.includes.binary" value=""/>
729 <target depends="init,compile-single" name="run-single">
730 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
731 <j2seproject1:java classname="${run.class}"/>
733 <target depends="init,compile-test-single" name="run-test-with-main">
734 <fail unless="run.class">Must select one file in the IDE or set run.class</fail>
735 <j2seproject1:java classname="${run.class}" classpath="${run.test.classpath}"/>
742 <target depends="init" if="netbeans.home" name="-debug-start-debugger">
743 <j2seproject1:nbjpdastart name="${debug.class}"/>
745 <target depends="init" if="netbeans.home" name="-debug-start-debugger-main-test">
746 <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${debug.class}"/>
748 <target depends="init,compile" name="-debug-start-debuggee">
751 <arg line="${application.args}"/>
753 </j2seproject3:debug>
755 <target depends="init,compile,-debug-start-debugger,-debug-start-debuggee" description="Debug project in IDE." if="netbeans.home" name="debug"/>
756 <target depends="init" if="netbeans.home" name="-debug-start-debugger-stepinto">
757 <j2seproject1:nbjpdastart stopclassname="${main.class}"/>
759 <target depends="init,compile,-debug-start-debugger-stepinto,-debug-start-debuggee" if="netbeans.home" name="debug-stepinto"/>
760 <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-single">
761 <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
762 <j2seproject3:debug classname="${debug.class}"/>
764 <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-single" if="netbeans.home" name="debug-single"/>
765 <target depends="init,compile-test-single" if="netbeans.home" name="-debug-start-debuggee-main-test">
766 <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail>
767 <j2seproject3:debug classname="${debug.class}" classpath="${debug.test.classpath}"/>
769 <target depends="init,compile-test-single,-debug-start-debugger-main-test,-debug-start-debuggee-main-test" if="netbeans.home" name="debug-test-with-main"/>
770 <target depends="init" name="-pre-debug-fix">
771 <fail unless="fix.includes">Must set fix.includes</fail>
772 <property name="javac.includes" value="${fix.includes}.java"/>
774 <target depends="init,-pre-debug-fix,compile-single" if="netbeans.home" name="-do-debug-fix">
775 <j2seproject1:nbjpdareload/>
777 <target depends="init,-pre-debug-fix,-do-debug-fix" if="netbeans.home" name="debug-fix"/>
783 <target depends="profile-init,compile" description="Profile a project in the IDE." if="netbeans.home" name="profile">
786 <path path="${run.classpath}"/>
791 <target depends="profile-init,compile-single" description="Profile a selected class in the IDE." if="netbeans.home" name="profile-single">
792 <fail unless="profile.class">Must select one file in the IDE or set profile.class</fail>
795 <path path="${run.classpath}"/>
798 <profile classname="${profile.class}"/>
801 =========================
802 APPLET PROFILING SECTION
803 =========================
805 <target depends="profile-init,compile-single" if="netbeans.home" name="profile-applet">
808 <path path="${run.classpath}"/>
811 <profile classname="sun.applet.AppletViewer">
813 <arg value="${applet.url}"/>
818 =========================
819 TESTS PROFILING SECTION
820 =========================
822 <target depends="profile-init,compile-test-single" if="netbeans.home" name="profile-test-single">
825 <path path="${run.test.classpath}"/>
828 <junit dir="${profiler.info.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" jvm="${profiler.info.jvm}" showoutput="true">
829 <env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
830 <jvmarg value="${profiler.info.jvmargs.agent}"/>
831 <jvmarg line="${profiler.info.jvmargs}"/>
832 <test name="${profile.class}"/>
834 <path path="${run.test.classpath}"/>
837 <propertyref prefix="test-sys-prop."/>
838 <mapper from="test-sys-prop.*" to="*" type="glob"/>
840 <formatter type="brief" usefile="false"/>
841 <formatter type="xml"/>
849 <target depends="init" if="have.sources" name="-javadoc-build">
850 <mkdir dir="${dist.javadoc.dir}"/>
851 <condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}">
853 <isset property="endorsed.classpath.cmd.line.arg"/>
855 <equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/>
859 <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}">
861 <path path="${javac.classpath}"/>
863 <fileset dir="${src.dir}" excludes="*.java,${excludes}" includes="${includes}">
864 <filename name="**/*.java"/>
866 <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
867 <include name="**/*.java"/>
868 <exclude name="*.java"/>
870 <arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
872 <copy todir="${dist.javadoc.dir}">
873 <fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
874 <filename name="**/doc-files/**"/>
876 <fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
877 <include name="**/doc-files/**"/>
881 <target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
882 <nbbrowse file="${dist.javadoc.dir}/index.html"/>
884 <target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
886 =========================
887 JUNIT COMPILATION SECTION
888 =========================
890 <target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
891 <mkdir dir="${build.test.classes.dir}"/>
893 <target name="-pre-compile-test">
894 <!-- Empty placeholder for easier customization. -->
895 <!-- You can override this target in the ../build.xml file. -->
897 <target if="do.depend.true" name="-compile-test-depend">
898 <j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
900 <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
901 <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}"/>
902 <copy todir="${build.test.classes.dir}">
903 <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
906 <target name="-post-compile-test">
907 <!-- Empty placeholder for easier customization. -->
908 <!-- You can override this target in the ../build.xml file. -->
910 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
911 <target name="-pre-compile-test-single">
912 <!-- Empty placeholder for easier customization. -->
913 <!-- You can override this target in the ../build.xml file. -->
915 <target depends="init,deps-jar,compile,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
916 <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
917 <j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
918 <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}"/>
919 <copy todir="${build.test.classes.dir}">
920 <fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
923 <target name="-post-compile-test-single">
924 <!-- Empty placeholder for easier customization. -->
925 <!-- You can override this target in the ../build.xml file. -->
927 <target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
929 =======================
930 JUNIT EXECUTION SECTION
931 =======================
933 <target depends="init" if="have.tests" name="-pre-test-run">
934 <mkdir dir="${build.test.results.dir}"/>
936 <target depends="init,compile-test,-pre-test-run" if="have.tests" name="-do-test-run">
937 <j2seproject3:junit testincludes="**/*Test.java"/>
939 <target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
940 <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
942 <target depends="init" if="have.tests" name="test-report"/>
943 <target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
944 <target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
945 <target depends="init" if="have.tests" name="-pre-test-run-single">
946 <mkdir dir="${build.test.results.dir}"/>
948 <target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
949 <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
950 <j2seproject3:junit excludes="" includes="${test.includes}"/>
952 <target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
953 <fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
955 <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"/>
957 =======================
958 JUNIT DEBUGGING SECTION
959 =======================
961 <target depends="init,compile-test" if="have.tests" name="-debug-start-debuggee-test">
962 <fail unless="test.class">Must select one file in the IDE or set test.class</fail>
963 <property location="${build.test.results.dir}/TEST-${test.class}.xml" name="test.report.file"/>
964 <delete file="${test.report.file}"/>
965 <mkdir dir="${build.test.results.dir}"/>
966 <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}">
969 <propertyref prefix="test-sys-prop."/>
970 <mapper from="test-sys-prop.*" to="*" type="glob"/>
972 <arg value="${test.class}"/>
973 <arg value="showoutput=true"/>
974 <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.BriefJUnitResultFormatter"/>
975 <arg value="formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,${test.report.file}"/>
977 </j2seproject3:debug>
979 <target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
980 <j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
982 <target depends="init,compile-test-single,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
983 <target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
984 <j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
986 <target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
988 =========================
989 APPLET EXECUTION SECTION
990 =========================
992 <target depends="init,compile-single" name="run-applet">
993 <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
994 <j2seproject1:java classname="sun.applet.AppletViewer">
996 <arg value="${applet.url}"/>
1001 =========================
1002 APPLET DEBUGGING SECTION
1003 =========================
1005 <target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
1006 <fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
1007 <j2seproject3:debug classname="sun.applet.AppletViewer">
1009 <arg value="${applet.url}"/>
1011 </j2seproject3:debug>
1013 <target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeans.home" name="debug-applet"/>
1019 <target name="-deps-clean-init" unless="built-clean.properties">
1020 <property location="${build.dir}/built-clean.properties" name="built-clean.properties"/>
1021 <delete file="${built-clean.properties}" quiet="true"/>
1023 <target if="already.built.clean.${basedir}" name="-warn-already-built-clean">
1024 <echo level="warn" message="Cycle detected: rozsirene-atributy-jedit was already built"/>
1026 <target depends="init,-deps-clean-init" name="deps-clean" unless="no.deps">
1027 <mkdir dir="${build.dir}"/>
1028 <touch file="${built-clean.properties}" verbose="false"/>
1029 <property file="${built-clean.properties}" prefix="already.built.clean."/>
1030 <antcall target="-warn-already-built-clean"/>
1031 <propertyfile file="${built-clean.properties}">
1032 <entry key="${basedir}" value=""/>
1034 <antcall target="-maybe-call-dep">
1035 <param name="call.built.properties" value="${built-clean.properties}"/>
1036 <param location="${project.rozsirene-atributy}" name="call.subproject"/>
1037 <param location="${project.rozsirene-atributy}/build.xml" name="call.script"/>
1038 <param name="call.target" value="clean"/>
1039 <param name="transfer.built-clean.properties" value="${built-clean.properties}"/>
1042 <target depends="init" name="-do-clean">
1043 <delete dir="${build.dir}"/>
1044 <delete dir="${dist.dir}" followsymlinks="false" includeemptydirs="true"/>
1046 <target name="-post-clean">
1047 <!-- Empty placeholder for easier customization. -->
1048 <!-- You can override this target in the ../build.xml file. -->
1050 <target depends="init,deps-clean,-do-clean,-post-clean" description="Clean build products." name="clean"/>
1051 <target name="-check-call-dep">
1052 <property file="${call.built.properties}" prefix="already.built."/>
1053 <condition property="should.call.dep">
1055 <isset property="already.built.${call.subproject}"/>
1059 <target depends="-check-call-dep" if="should.call.dep" name="-maybe-call-dep">
1060 <ant antfile="${call.script}" inheritall="false" target="${call.target}">
1062 <propertyref prefix="transfer."/>
1063 <mapper from="transfer.*" to="*" type="glob"/>