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