Party/nbproject/build-impl.xml
2024-10-03 11:16:46 +02:00

1286 lines
97 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="UTF-8"?>
<!--
*** GENERATED FROM project.xml - DO NOT EDIT ***
*** EDIT ../build.xml INSTEAD ***
For the purpose of easier reading the script
is divided into following sections:
- initialization
- compilation
- jar
- execution
- debugging
- javadoc
- test compilation
- test execution
- test debugging
- applet
- cleanup
-->
<project xmlns:if="ant:if" 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" xmlns:unless="ant:unless" basedir=".." default="default" name="Party-impl">
<fail message="Please build using Ant 1.8.0 or higher.">
<condition>
<not>
<antversion atleast="1.8.0"/>
</not>
</condition>
</fail>
<target depends="test,jar,javadoc" description="Build and test whole project." name="default"/>
<!--
======================
INITIALIZATION SECTION
======================
-->
<target name="-pre-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="-pre-init" name="-init-private">
<property file="nbproject/private/config.properties"/>
<property file="nbproject/private/configs/${config}.properties"/>
<property file="nbproject/private/private.properties"/>
</target>
<target depends="-pre-init,-init-private" name="-init-user">
<property file="${user.properties.file}"/>
<!-- The two properties below are usually overridden -->
<!-- by the active platform. Just a fallback. -->
<property name="default.javac.source" value="1.8"/>
<property name="default.javac.target" value="1.8"/>
</target>
<target depends="-pre-init,-init-private,-init-user" name="-init-project">
<property file="nbproject/configs/${config}.properties"/>
<property file="nbproject/project.properties"/>
</target>
<target name="-init-modules-supported">
<condition property="modules.supported.internal" value="true">
<not>
<matches pattern="1\.[0-8](\..*)?" string="${javac.source}"/>
</not>
</condition>
</target>
<target depends="-init-modules-supported" if="modules.supported.internal" name="-init-macrodef-modulename">
<macrodef name="modulename" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute name="property"/>
<attribute name="sourcepath"/>
<sequential>
<loadresource property="@{property}" quiet="true">
<javaresource classpath="@{sourcepath}" name="module-info.java" parentFirst="false"/>
<filterchain>
<stripjavacomments/>
<linecontainsregexp>
<regexp pattern="module .* \{"/>
</linecontainsregexp>
<tokenfilter>
<linetokenizer/>
<replaceregex flags="s" pattern="(\s*module\s+)(\S*)(\s*\{.*)" replace="\2"/>
</tokenfilter>
<striplinebreaks/>
</filterchain>
</loadresource>
</sequential>
</macrodef>
</target>
<target depends="-init-modules-supported,-init-macrodef-modulename" if="modules.supported.internal" name="-init-source-module-properties">
<fail message="Java 9 support requires Ant 1.10.0 or higher.">
<condition>
<not>
<antversion atleast="1.10.0"/>
</not>
</condition>
</fail>
<j2seproject3:modulename property="module.name" sourcepath="${src.dir}"/>
<condition property="named.module.internal">
<and>
<isset property="module.name"/>
<length length="0" string="${module.name}" when="greater"/>
</and>
</condition>
<condition property="unnamed.module.internal">
<not>
<isset property="named.module.internal"/>
</not>
</condition>
<property name="javac.modulepath" value=""/>
<property name="run.modulepath" value="${javac.modulepath}"/>
<property name="module.build.classes.dir" value="${build.classes.dir}"/>
<property name="debug.modulepath" value="${run.modulepath}"/>
<property name="javac.upgrademodulepath" value=""/>
<property name="run.upgrademodulepath" value="${javac.upgrademodulepath}"/>
<condition else="" property="javac.systemmodulepath.cmd.line.arg" value="--system '${javac.systemmodulepath}'">
<and>
<isset property="javac.systemmodulepath"/>
<length length="0" string="${javac.systemmodulepath}" when="greater"/>
</and>
</condition>
<property name="dist.jlink.dir" value="${dist.dir}/jlink"/>
<property name="dist.jlink.output" value="${dist.jlink.dir}/${application.title}"/>
<property name="module.name" value=""/>
</target>
<target depends="-pre-init,-init-private,-init-user,-init-project,-init-macrodef-property,-init-modules-supported" name="-do-init">
<property name="platform.java" value="${java.home}/bin/java"/>
<available file="${manifest.file}" property="manifest.available"/>
<condition property="splashscreen.available">
<and>
<not>
<equals arg1="${application.splash}" arg2="" trim="true"/>
</not>
<available file="${application.splash}"/>
</and>
</condition>
<condition property="main.class.available">
<and>
<isset property="main.class"/>
<not>
<equals arg1="${main.class}" arg2="" trim="true"/>
</not>
</and>
</condition>
<condition property="profile.available">
<and>
<isset property="javac.profile"/>
<length length="0" string="${javac.profile}" when="greater"/>
<not>
<matches pattern="1\.[0-7](\..*)?" string="${javac.source}"/>
</not>
</and>
</condition>
<condition property="do.archive">
<or>
<not>
<istrue value="${jar.archive.disabled}"/>
</not>
<istrue value="${not.archive.disabled}"/>
</or>
</condition>
<condition property="do.archive+manifest.available">
<and>
<isset property="manifest.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="do.archive+main.class.available">
<and>
<isset property="main.class.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="do.archive+splashscreen.available">
<and>
<isset property="splashscreen.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="do.archive+profile.available">
<and>
<isset property="profile.available"/>
<istrue value="${do.archive}"/>
</and>
</condition>
<condition property="have.tests">
<or>
<available file="${test.src.dir}"/>
</or>
</condition>
<condition property="have.sources">
<or>
<available file="${src.dir}"/>
</or>
</condition>
<condition property="netbeans.home+have.tests">
<and>
<isset property="netbeans.home"/>
<isset property="have.tests"/>
</and>
</condition>
<condition property="no.javadoc.preview">
<and>
<isset property="javadoc.preview"/>
<isfalse value="${javadoc.preview}"/>
</and>
</condition>
<property name="run.jvmargs" value=""/>
<property name="run.jvmargs.ide" value=""/>
<property name="javac.compilerargs" value=""/>
<property name="work.dir" value="${basedir}"/>
<condition property="no.deps">
<and>
<istrue value="${no.dependencies}"/>
</and>
</condition>
<property name="javac.debug" value="true"/>
<property name="javadoc.preview" value="true"/>
<property name="application.args" value=""/>
<property name="source.encoding" value="${file.encoding}"/>
<property name="runtime.encoding" value="${source.encoding}"/>
<property name="manifest.encoding" value="${source.encoding}"/>
<condition property="javadoc.encoding.used" value="${javadoc.encoding}">
<and>
<isset property="javadoc.encoding"/>
<not>
<equals arg1="${javadoc.encoding}" arg2=""/>
</not>
</and>
</condition>
<property name="javadoc.encoding.used" value="${source.encoding}"/>
<property name="includes" value="**"/>
<property name="excludes" value=""/>
<property name="do.depend" value="false"/>
<condition property="do.depend.true">
<istrue value="${do.depend}"/>
</condition>
<path id="endorsed.classpath.path" path="${endorsed.classpath}"/>
<condition else="" property="endorsed.classpath.cmd.line.arg" value="-Xbootclasspath/p:'${toString:endorsed.classpath.path}'">
<and>
<isset property="endorsed.classpath"/>
<not>
<equals arg1="${endorsed.classpath}" arg2="" trim="true"/>
</not>
</and>
</condition>
<condition else="" property="javac.profile.cmd.line.arg" value="-profile ${javac.profile}">
<isset property="profile.available"/>
</condition>
<condition else="false" property="jdkBug6558476">
<and>
<matches pattern="1\.[56]" string="${java.specification.version}"/>
<not>
<os family="unix"/>
</not>
</and>
</condition>
<condition else="false" property="javac.fork">
<or>
<istrue value="${jdkBug6558476}"/>
<istrue value="${javac.external.vm}"/>
</or>
</condition>
<property name="jar.index" value="false"/>
<property name="jar.index.metainf" value="${jar.index}"/>
<property name="copylibs.rebase" value="true"/>
<available file="${meta.inf.dir}/persistence.xml" property="has.persistence.xml"/>
<condition property="junit.available">
<or>
<available classname="org.junit.Test" classpath="${run.test.classpath}"/>
<available classname="junit.framework.Test" classpath="${run.test.classpath}"/>
</or>
</condition>
<condition property="testng.available">
<available classname="org.testng.annotations.Test" classpath="${run.test.classpath}"/>
</condition>
<condition property="junit+testng.available">
<and>
<istrue value="${junit.available}"/>
<istrue value="${testng.available}"/>
</and>
</condition>
<condition else="testng" property="testng.mode" value="mixed">
<istrue value="${junit+testng.available}"/>
</condition>
<condition else="" property="testng.debug.mode" value="-mixed">
<istrue value="${junit+testng.available}"/>
</condition>
<property name="java.failonerror" value="true"/>
</target>
<target name="-post-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="-pre-init,-init-private,-init-user,-init-project,-do-init" name="-init-check">
<fail unless="src.dir">Must set src.dir</fail>
<fail unless="test.src.dir">Must set test.src.dir</fail>
<fail unless="build.dir">Must set build.dir</fail>
<fail unless="dist.dir">Must set dist.dir</fail>
<fail unless="build.classes.dir">Must set build.classes.dir</fail>
<fail unless="dist.javadoc.dir">Must set dist.javadoc.dir</fail>
<fail unless="build.test.classes.dir">Must set build.test.classes.dir</fail>
<fail unless="build.test.results.dir">Must set build.test.results.dir</fail>
<fail unless="build.classes.excludes">Must set build.classes.excludes</fail>
<fail unless="dist.jar">Must set dist.jar</fail>
</target>
<target name="-init-macrodef-property">
<macrodef name="property" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute name="name"/>
<attribute name="value"/>
<sequential>
<property name="@{name}" value="${@{value}}"/>
</sequential>
</macrodef>
</target>
<target depends="-init-ap-cmdline-properties,-init-source-module-properties" if="modules.supported.internal" name="-init-macrodef-javac-with-module">
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
<attribute default="${javac.modulepath}" name="modulepath"/>
<attribute default="${javac.upgrademodulepath}" name="upgrademodulepath"/>
<attribute default="${javac.processorpath}" name="processorpath"/>
<attribute default="${javac.processormodulepath}" name="processormodulepath"/>
<attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="${javac.debug}" name="debug"/>
<attribute default="${empty.dir}" name="sourcepath" unless:set="named.module.internal"/>
<attribute default="${src.dir}" if:set="named.module.internal" name="sourcepath"/>
<attribute default="${empty.dir}" name="gensrcdir"/>
<element name="customize" optional="true"/>
<sequential>
<condition property="warn.excludes.internal">
<and>
<isset property="named.module.internal"/>
<length length="0" string="@{excludes}" trim="true" when="greater"/>
</and>
</condition>
<echo if:set="warn.excludes.internal" level="warning" message="The javac excludes are not supported in the JDK 9 Named Module."/>
<property location="${build.dir}/empty" name="empty.dir"/>
<mkdir dir="${empty.dir}"/>
<mkdir dir="@{apgeneratedsrcdir}"/>
<condition property="processormodulepath.set">
<resourcecount count="0" when="greater">
<path>
<pathelement path="@{processormodulepath}"/>
</path>
</resourcecount>
</condition>
<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}">
<src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/>
</dirset>
</src>
<classpath>
<path path="@{classpath}"/>
</classpath>
<modulepath>
<path path="@{modulepath}"/>
</modulepath>
<upgrademodulepath>
<path path="@{upgrademodulepath}"/>
</upgrademodulepath>
<compilerarg line="${javac.systemmodulepath.cmd.line.arg}"/>
<compilerarg line="${javac.profile.cmd.line.arg}"/>
<compilerarg line="${javac.compilerargs}"/>
<compilerarg if:set="processormodulepath.set" value="--processor-module-path"/>
<compilerarg if:set="processormodulepath.set" path="@{processormodulepath}"/>
<compilerarg unless:set="processormodulepath.set" value="-processorpath"/>
<compilerarg path="@{processorpath}:${empty.dir}" unless:set="processormodulepath.set"/>
<compilerarg line="${ap.processors.internal}"/>
<compilerarg line="${annotation.processing.processor.options}"/>
<compilerarg value="-s"/>
<compilerarg path="@{apgeneratedsrcdir}"/>
<compilerarg line="${ap.proc.none.internal}"/>
<customize/>
</javac>
</sequential>
</macrodef>
</target>
<target depends="-init-ap-cmdline-properties,-init-source-module-properties" if="ap.supported.internal" name="-init-macrodef-javac-with-processors" unless="modules.supported.internal">
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
<attribute default="${javac.modulepath}" name="modulepath"/>
<attribute default="${javac.upgrademodulepath}" name="upgrademodulepath"/>
<attribute default="${javac.processorpath}" name="processorpath"/>
<attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="${javac.debug}" name="debug"/>
<attribute default="${empty.dir}" name="sourcepath"/>
<attribute default="${empty.dir}" name="gensrcdir"/>
<element name="customize" optional="true"/>
<sequential>
<property location="${build.dir}/empty" name="empty.dir"/>
<mkdir dir="${empty.dir}"/>
<mkdir dir="@{apgeneratedsrcdir}"/>
<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}">
<src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/>
</dirset>
</src>
<classpath>
<path path="@{classpath}"/>
</classpath>
<compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
<compilerarg line="${javac.profile.cmd.line.arg}"/>
<compilerarg line="${javac.compilerargs}"/>
<compilerarg value="-processorpath"/>
<compilerarg path="@{processorpath}:${empty.dir}"/>
<compilerarg line="${ap.processors.internal}"/>
<compilerarg line="${annotation.processing.processor.options}"/>
<compilerarg value="-s"/>
<compilerarg path="@{apgeneratedsrcdir}"/>
<compilerarg line="${ap.proc.none.internal}"/>
<customize/>
</javac>
</sequential>
</macrodef>
</target>
<target depends="-init-ap-cmdline-properties,-init-source-module-properties" name="-init-macrodef-javac-without-processors" unless="ap.supported.internal">
<macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
<attribute default="${javac.modulepath}" name="modulepath"/>
<attribute default="${javac.upgrademodulepath}" name="upgrademodulepath"/>
<attribute default="${javac.processorpath}" name="processorpath"/>
<attribute default="${build.generated.sources.dir}/ap-source-output" name="apgeneratedsrcdir"/>
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="${javac.debug}" name="debug"/>
<attribute default="${empty.dir}" name="sourcepath"/>
<attribute default="${empty.dir}" name="gensrcdir"/>
<element name="customize" optional="true"/>
<sequential>
<property location="${build.dir}/empty" name="empty.dir"/>
<mkdir dir="${empty.dir}"/>
<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}">
<src>
<dirset dir="@{gensrcdir}" erroronmissingdir="false">
<include name="*"/>
</dirset>
</src>
<classpath>
<path path="@{classpath}"/>
</classpath>
<compilerarg line="${endorsed.classpath.cmd.line.arg}"/>
<compilerarg line="${javac.profile.cmd.line.arg}"/>
<compilerarg line="${javac.compilerargs}"/>
<customize/>
</javac>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-javac-with-module,-init-macrodef-javac-with-processors,-init-macrodef-javac-without-processors" name="-init-macrodef-javac">
<macrodef name="depend" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${src.dir}" name="srcdir"/>
<attribute default="${build.classes.dir}" name="destdir"/>
<attribute default="${javac.classpath}" name="classpath"/>
<sequential>
<depend cache="${build.dir}/depcache" destdir="@{destdir}" excludes="${excludes}" includes="${includes}" srcdir="@{srcdir}">
<classpath>
<path path="@{classpath}"/>
</classpath>
</depend>
</sequential>
</macrodef>
<macrodef name="force-recompile" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${build.classes.dir}" name="destdir"/>
<sequential>
<fail unless="javac.includes">Must set javac.includes</fail>
<pathconvert pathsep="${line.separator}" property="javac.includes.binary">
<path>
<filelist dir="@{destdir}" files="${javac.includes}"/>
</path>
<globmapper from="*.java" to="*.class"/>
</pathconvert>
<tempfile deleteonexit="true" property="javac.includesfile.binary"/>
<echo file="${javac.includesfile.binary}" message="${javac.includes.binary}"/>
<delete>
<files includesfile="${javac.includesfile.binary}"/>
</delete>
<delete>
<fileset file="${javac.includesfile.binary}"/>
</delete>
</sequential>
</macrodef>
</target>
<target if="${junit.available}" name="-init-macrodef-junit-init">
<condition else="false" property="nb.junit.batch" value="true">
<and>
<istrue value="${junit.available}"/>
<not>
<isset property="test.method"/>
</not>
</and>
</condition>
<condition else="false" property="nb.junit.single" value="true">
<and>
<istrue value="${junit.available}"/>
<isset property="test.method"/>
</and>
</condition>
</target>
<target name="-init-test-properties">
<property name="test.binaryincludes" value="&lt;nothing&gt;"/>
<property name="test.binarytestincludes" value=""/>
<property name="test.binaryexcludes" value=""/>
</target>
<target depends="-init-modules-supported" if="modules.supported.internal" name="-init-macrodef-junit-prototype-with-module">
<macrodef name="junit-prototype" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<element name="customizePrototype" optional="true"/>
<sequential>
<property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<classpath>
<path path="${run.test.classpath}"/>
</classpath>
<modulepath>
<path path="${run.test.modulepath}"/>
</modulepath>
<formatter type="brief" usefile="false"/>
<formatter type="xml"/>
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg value="-ea"/>
<jvmarg line="${run.test.jvmargs}"/>
<customizePrototype/>
</junit>
</sequential>
</macrodef>
</target>
<target depends="-init-modules-supported" name="-init-macrodef-junit-prototype-without-module" unless="modules.supported.internal">
<macrodef name="junit-prototype" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<element name="customizePrototype" optional="true"/>
<sequential>
<property name="junit.forkmode" value="perTest"/>
<junit dir="${work.dir}" errorproperty="tests.failed" failureproperty="tests.failed" fork="true" forkmode="${junit.forkmode}" showoutput="true" tempdir="${build.dir}">
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<classpath>
<path path="${run.test.classpath}"/>
</classpath>
<formatter type="brief" usefile="false"/>
<formatter type="xml"/>
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg value="-ea"/>
<customizePrototype/>
</junit>
</sequential>
</macrodef>
</target>
<target depends="-init-test-properties,-init-macrodef-junit-prototype-with-module,-init-macrodef-junit-prototype-without-module" if="${nb.junit.single}" name="-init-macrodef-junit-single" unless="${nb.junit.batch}">
<macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<j2seproject3:junit-prototype>
<customizePrototype>
<test methods="@{testmethods}" name="@{testincludes}" todir="${build.test.results.dir}"/>
<customize/>
</customizePrototype>
</j2seproject3:junit-prototype>
</sequential>
</macrodef>
</target>
<target depends="-init-test-properties,-init-macrodef-junit-prototype-with-module,-init-macrodef-junit-prototype-without-module" if="${nb.junit.batch}" name="-init-macrodef-junit-batch" unless="${nb.junit.single}">
<macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<j2seproject3:junit-prototype>
<customizePrototype>
<batchtest todir="${build.test.results.dir}">
<fileset dir="${test.src.dir}" excludes="@{excludes},${excludes}" includes="@{includes}">
<filename name="@{testincludes}"/>
</fileset>
<fileset dir="${build.test.classes.dir}" excludes="@{excludes},${excludes},${test.binaryexcludes}" includes="${test.binaryincludes}">
<filename name="${test.binarytestincludes}"/>
</fileset>
</batchtest>
<customize/>
</customizePrototype>
</j2seproject3:junit-prototype>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit-init,-init-macrodef-junit-single, -init-macrodef-junit-batch" if="${junit.available}" name="-init-macrodef-junit"/>
<target if="${testng.available}" name="-init-macrodef-testng">
<macrodef name="testng" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customize" optional="true"/>
<sequential>
<condition else="" property="testng.methods.arg" value="@{testincludes}.@{testmethods}">
<isset property="test.method"/>
</condition>
<union id="test.set">
<fileset dir="${test.src.dir}" excludes="@{excludes},**/*.xml,${excludes}" includes="@{includes}">
<filename name="@{testincludes}"/>
</fileset>
</union>
<taskdef classname="org.testng.TestNGAntTask" classpath="${run.test.classpath}" name="testng"/>
<testng classfilesetref="test.set" failureProperty="tests.failed" listeners="org.testng.reporters.VerboseReporter" methods="${testng.methods.arg}" mode="${testng.mode}" outputdir="${build.test.results.dir}" suitename="Party" testname="TestNG tests" workingDir="${work.dir}">
<xmlfileset dir="${build.test.classes.dir}" includes="@{testincludes}"/>
<propertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</propertyset>
<classpath>
<path path="${run.test.classpath}"/>
</classpath>
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<customize/>
</testng>
</sequential>
</macrodef>
</target>
<target name="-init-macrodef-test-impl">
<macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element implicit="true" name="customize" optional="true"/>
<sequential>
<echo>No tests executed.</echo>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-impl">
<macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element implicit="true" name="customize" optional="true"/>
<sequential>
<j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize/>
</j2seproject3:junit>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-testng" if="${testng.available}" name="-init-macrodef-testng-impl">
<macrodef name="test-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element implicit="true" name="customize" optional="true"/>
<sequential>
<j2seproject3:testng excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize/>
</j2seproject3:testng>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-test-impl,-init-macrodef-junit-impl,-init-macrodef-testng-impl" name="-init-macrodef-test">
<macrodef name="test" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<sequential>
<j2seproject3:test-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
</customize>
</j2seproject3:test-impl>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit" if="${junit.available}" name="-init-macrodef-junit-debug-impl">
<macrodef name="test-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<element name="customizeDebuggee" optional="true"/>
<sequential>
<j2seproject3:junit excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customize>
<jvmarg value="-agentlib:jdwp=transport=${debug-transport},address=${jpda.address}"/>
<customizeDebuggee/>
</customize>
</j2seproject3:junit>
</sequential>
</macrodef>
</target>
<target if="${testng.available}" name="-init-macrodef-testng-debug">
<macrodef name="testng-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<element name="customize2" optional="true"/>
<sequential>
<condition else="-testclass @{testClass}" property="test.class.or.method" value="-methods @{testClass}.@{testMethod}">
<isset property="test.method"/>
</condition>
<condition else="-suitename Party -testname @{testClass} ${test.class.or.method}" property="testng.cmd.args" value="@{testClass}">
<matches pattern=".*\.xml" string="@{testClass}"/>
</condition>
<delete dir="${build.test.results.dir}" quiet="true"/>
<mkdir dir="${build.test.results.dir}"/>
<j2seproject3:debug classname="org.testng.TestNG" classpath="${debug.test.classpath}">
<customizeDebuggee>
<customize2/>
<jvmarg value="-ea"/>
<arg line="${testng.debug.mode}"/>
<arg line="-d ${build.test.results.dir}"/>
<arg line="-listener org.testng.reporters.VerboseReporter"/>
<arg line="${testng.cmd.args}"/>
</customizeDebuggee>
</j2seproject3:debug>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-testng-debug" if="${testng.available}" name="-init-macrodef-testng-debug-impl">
<macrodef name="testng-debug-impl" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<element implicit="true" name="customize2" optional="true"/>
<sequential>
<j2seproject3:testng-debug testClass="@{testClass}" testMethod="@{testMethod}">
<customize2/>
</j2seproject3:testng-debug>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-junit-debug-impl" if="${junit.available}" name="-init-macrodef-test-debug-junit">
<macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<sequential>
<j2seproject3:test-debug-impl excludes="@{excludes}" includes="@{includes}" testincludes="@{testincludes}" testmethods="@{testmethods}">
<customizeDebuggee>
<jvmarg line="${run.jvmargs}"/>
<jvmarg line="${run.jvmargs.ide}"/>
</customizeDebuggee>
</j2seproject3:test-debug-impl>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-testng-debug-impl" if="${testng.available}" name="-init-macrodef-test-debug-testng">
<macrodef name="test-debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${includes}" name="includes"/>
<attribute default="${excludes}" name="excludes"/>
<attribute default="**" name="testincludes"/>
<attribute default="" name="testmethods"/>
<attribute default="${main.class}" name="testClass"/>
<attribute default="" name="testMethod"/>
<sequential>
<j2seproject3:testng-debug-impl testClass="@{testClass}" testMethod="@{testMethod}">
<customize2>
<syspropertyset>
<propertyref prefix="test-sys-prop."/>
<mapper from="test-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
</customize2>
</j2seproject3:testng-debug-impl>
</sequential>
</macrodef>
</target>
<target depends="-init-macrodef-test-debug-junit,-init-macrodef-test-debug-testng" name="-init-macrodef-test-debug"/>
<!--
pre NB7.2 profiling section; consider it deprecated
-->
<target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile, -profile-init-check" if="profiler.info.jvmargs.agent" name="profile-init"/>
<target if="profiler.info.jvmargs.agent" name="-profile-pre-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target if="profiler.info.jvmargs.agent" name="-profile-post-init">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target if="profiler.info.jvmargs.agent" name="-profile-init-macrodef-profile">
<macrodef name="resolve">
<attribute name="name"/>
<attribute name="value"/>
<sequential>
<property name="@{name}" value="${env.@{value}}"/>
</sequential>
</macrodef>
<macrodef name="profile">
<attribute default="${main.class}" name="classname"/>
<element name="customize" optional="true"/>
<sequential>
<property environment="env"/>
<resolve name="profiler.current.path" value="${profiler.info.pathvar}"/>
<java classname="@{classname}" dir="${profiler.info.dir}" failonerror="${java.failonerror}" fork="true" jvm="${profiler.info.jvm}">
<jvmarg line="${endorsed.classpath.cmd.line.arg}"/>
<jvmarg value="${profiler.info.jvmargs.agent}"/>
<jvmarg line="${profiler.info.jvmargs}"/>
<env key="${profiler.info.pathvar}" path="${profiler.info.agentpath}:${profiler.current.path}"/>
<arg line="${application.args}"/>
<classpath>
<path path="${run.classpath}"/>
</classpath>
<syspropertyset>
<propertyref prefix="run-sys-prop."/>
<mapper from="run-sys-prop.*" to="*" type="glob"/>
</syspropertyset>
<customize/>
</java>
</sequential>
</macrodef>
</target>
<target depends="-profile-pre-init, init, -profile-post-init, -profile-init-macrodef-profile" if="profiler.info.jvmargs.agent" name="-profile-init-check">
<fail unless="profiler.info.jvm">Must set JVM to use for profiling in profiler.info.jvm</fail>
<fail unless="profiler.info.jvmargs.agent">Must set profiler agent JVM arguments in profiler.info.jvmargs.agent</fail>
</target>
<!--
end of pre NB7.2 profiling section
-->
<target depends="-init-debug-args" name="-init-macrodef-nbjpda">
<macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute default="${main.class}" name="name"/>
<attribute default="${debug.modulepath}" name="modulepath"/>
<attribute default="${debug.classpath}" name="classpath"/>
<attribute default="" name="stopclassname"/>
<sequential>
<nbjpdastart addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}" transport="${debug-transport}">
<modulepath>
<path path="@{modulepath}"/>
</modulepath>
<classpath>
<path path="@{classpath}"/>
</classpath>
</nbjpdastart>
</sequential>
</macrodef>
<macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute default="${build.classes.dir}" name="dir"/>
<sequential>
<nbjpdareload>
<fileset dir="@{dir}" includes="${fix.classes}">
<include name="${fix.includes}*.class"/>
</fileset>
</nbjpdareload>
</sequential>
</macrodef>
</target>
<target name="-init-debug-args">
<condition else="dt_socket" property="debug-transport-by-os" value="dt_shmem">
<os family="windows"/>
</condition>
<condition else="${debug-transport-by-os}" property="debug-transport" value="${debug.transport}">
<isset property="debug.transport"/>
</condition>
</target>
<target depends="-init-debug-args" name="-init-macrodef-debug">
<macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/3">
<attribute default="${module.name}" name="modulename"/>
<attribute default="${main.class}" name="classname"/>
<attribute default="${debug.modulepath}" name="modulepath"/>
<attribute default="${debug.classpath}" name="classpath"/>
<element name="customizeDebuggee" optional="true"/>
<sequential>
<j2seproject1:java classname="@{classname}" classpath="@{classpath}" modulename="@{modulename}" modulepath="@{modulepath}">
<customize>
<jvmarg value="-agentlib:jdwp=transport=${debug-transport},address=${jpda.address}"/>
<customizeDebuggee/>
</customize>
</j2seproject1:java>
</sequential>
</macrodef>
</target>
<target depends="-init-source-module-properties" if="named.module.internal" name="-init-macrodef-java-with-module">
<macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1">
<attribute default="${module.name}" name="modulename"/>
<attribute default="${main.class}" name="classname"/>
<attribute default="${run.modulepath}" name="modulepath"/>
<attribute default="${run.upgrademodulepath}" name="upgrademodulepath"/>
<attribute default="${run.classpath}" name="classpath"/>
<attribute default="jvm" name="jvm"/>
<element name="customize" optional="true"/>
<sequential>
<java classname="@{classname}" dir="${work.dir}" failonerror="${java.failonerror}" fork="true" module="FILE0<00><>B 8<00>GG`H<00>
><07><04>a)><07><04>ٵ><07><04><01><>Oh<4F><07>!,<00><>X 0pR<00><00>
><07><04>a)><07><04>a)><07><04>a)><07><04>6 9F101D~10<00><00><00><00>
><07><04>a)><07><04>a)><07><04>a)><07><04>6 &9f101da5db7e19aff21e6fd749d555328ea434<00>H@66AXD<58><00><><EFBFBD><EFBFBD><EFBFBD>yGGFILE0g$o
8X<00>G<00>`H<00><>><07><04><01><>><07><04><01><>><07><04>-锬,
<EFBFBD>+x<>X 0`F<00><00><>><07><04><01><>><07><04><01><>><07><04><01><>><07><04>75<00>X8 $I300((<00><00><00><00><00>
><07><04>a)><07><04>ٵ><07><04><01><>Oh<4F><07>6!&9f101da5db7e19aff21e6fd749d555328ea434<00>hR<00><00>
><07><04>a)><07>Gٵ><07><04><01><>Oh<4F><07>6!9F101D~1<00><><EFBFBD><EFBFBD><EFBFBD>yGGFILE0!,8P <00>F`H<00>$,ˌ<04><01><><EFBFBD><EFBFBD>E <09> L3:<3A><0F>j1<6A><31><15>+<00>}} 0pRc<00>$,ˌ<04><01><><EFBFBD><EFBFBD>E <09><01><><EFBFBD><EFBFBD>E <09><01>\<5C>d<EFBFBD><0F>MUSICA~10pXc<00>$,ˌ<04><01><><EFBFBD><EFBFBD>E <09><01><><EFBFBD><EFBFBD>E <09><01>\<5C>d<EFBFBD><0F> MusicAndCo2<00>X8 $I300((<00>P@HF$I30AZD<5A><00>( $I30<00><><EFBFBD><EFBFBD><EFBFBD>yG<><7F>̌<04>XU manifest.mf<00>hT<00>E<><04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04> nbproject<00>hR<00>E<><04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04>NBPROJ~1<00>XH<00><00>@<40>̌<04><01>@<40>̌<04><01>@<40>̌<04><01>@<40>̌<04>src<00><><EFBFBD><EFBFBD><EFBFBD>yGFFILE0 08P<00>F`HE<><04><01>H<1E>h<0F><01>H<1E>h<0F>|<7C><><EFBFBD><15>+<08>X 0pR<00>E<><04>E<><04>E<><04>E<><04>NBPROJ~10pT<00>E<><04>E<><04>E<><04>E<><04> nbproject<00>X8 $I300((<00>P@HF$I30A<01><>[<00>( $I30<00><><EFBFBD><EFBFBD><EFBFBD>yG:Ě<04>:Ě<04>O<>̌<04>private<00>xf<00>l<>̌<04>|/̌<04>|/̌<04>|/̌<04><00> project.properties<00>hX<00><13><04><01><>̌<04><01><>̌<04><01><>̌<04> project.xml<00>pZ<00>l<>̌<04>|/̌<04>|/̌<04>|/̌<04><00> PROJEC~1.PRO<00><><EFBFBD><EFBFBD><EFBFBD>yGFFILE0<00><>80<00>j2s`H<13><04><01>]:<3A><0F><01>]:<3A><0F>~<7E><><1C><14> ,<00>} 0pX<00><13><04><13><04><13><04><13><04> project.xml<00> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://www.netbeans.org/ns/project/1">
<type>org.netbeans.modules.java.j2seproject</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/jje-project/3">
<name>MusicAndCo2</name>
<source-roots>
<root id="src.dir"/>
</source-roots>
<test-roots>
<root id="test.src.dir"/>
</test-roots>
</data>
</configuration>
</project>
<00><><EFBFBD><EFBFBD><EFBFBD>yGjFILE0<00>-8<00><00>i`HV<>̌<04>x<><78>h<EFBFBD><04>x<><78>h<EFBFBD><04>j1<6A><31><15>+X<>X 0hP<00>V<>̌<04>V<>̌<04>V<>̌<04>V<>̌<04>private<00><00><00> $I300pp<00>xf<00>:Ě<04>s*<2A>+b<0E>s*<2A>+b<0E>F<04><1C><14><01>z private.properties<00>hX<00>x<><78>h<EFBFBD><04>F<>%p<><0F>F<>%p<><0F>1<>C*<2A><14>Wi private.xml<00>pZ<00>:Ě<04>s*<2A>+b<0E>s*<2A>+b<0E>F<04><1C><14><01>z PRIVAT~1.PRO<00><><EFBFBD><EFBFBD><EFBFBD>yGiFILE0
<EFBFBD>80<00>ing`H:Ě<04>s*<2A>+b<0E>s*<2A>+b<0E>F<04><1C><14> ,0.y 0xZ<00>:Ě<04>:Ě<04>:Ě<04>:Ě<04> PRIVAT~1.PRO0<00>f<00>:Ě<04>:Ě<04>:Ě<04>:Ě<04> private.properties<00><00>zcompile.on.save=true
user.properties.file=C:\\Users\\famille Thevenot\\AppData\\Roamii\\NetBeans\\22\\build.properties
<00><><EFBFBD><EFBFBD><EFBFBD>yGiFILE0<00>]u
8<00><00>`H<00>t<EFBFBD>ge<0F><01><><EFBFBD><<EFBFBD><0F><01><><EFBFBD><<EFBFBD><0F><01><><EFBFBD><<EFBFBD><0F> ,h<>} 0xZ<00><00>t<EFBFBD>ge<0F>z<1B><><0F>z<1B><><0F>z<1B><><0F> COMMAN~1.CLA0<00>f<00><00>t<EFBFBD>ge<0F>z<1B><><0F>z<1B><><0F>z<1B><><0F> CommandeTest.class<00>H@<00><00>A<01><><EFBFBD><00><><EFBFBD><EFBFBD><EFBFBD>yGFILE0<14>8<00><00>dRC`H<00><><EFBFBD>̌<04>><3E>:<3A><0F>><3E>:<3A><0F><01><><EFBFBD>(<28><14> ,؁} 0xZ<00><00><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04> GENFIL~1.PRO0<00>h<00><00><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04> genfiles.properties<00><00><00>build.xml.data.CRC32=ad09f6ef
build.xml.script.CRC32=fbce868f
build.xml.stylesheet.Cd32=f85dc8f2@1.109.0.48
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=211e9cc4
nbproject/build-impl.xml.script.CRC32=7296d1f5
nbproject/build-impl.xml.stylesheet.CRC32=12e0a6c2@1.111.0.48
<00><><EFBFBD><EFBFBD><EFBFBD>yGdFILE0h<>8<00><00>d`H<00><><EFBFBD>̌<04>.<2E><>:<3A><0F>.<2E><>:<3A><0F>%1)<29><14> ,@<40>} 0xZ<00><00><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04> BUILD-~1.XML0x^<00><00><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04> build-impl.xml<00>X@<00>]<5D>]<5D>AN<><4E>1;<3B><>1<13>YX<00><><EFBFBD><EFBFBD><EFBFBD>yGddFILE0<00><>8X<00>c`HK<><4B>̌<04>q<><71>̌<04>q<><71>̌<04><01><>?)<29><14> ,غX 0pT<00>K<><4B>̌<04>K<><4B>̌<04>K<><4B>̌<04>K<><4B>̌<04> build.xml<00>H@Aѿ[<00><><EFBFBD><EFBFBD><EFBFBD>yGccFILE0S/8<00><00>bs`H<00>@<40>̌<04>J<><4A><EFBFBD><EFBFBD><0F>J<><4A><EFBFBD><EFBFBD><0F>j1<6A><31><15>+p<>X 0`H<00><00>@<40>̌<04><01>@<40>̌<04><01>@<40>̌<04><01>@<40>̌<04>src<00><00><00> $I300<00><00><00>hR<00>%<25>\C<><04><01><><EFBFBD><EFBFBD><EFBFBD><0F><01><><EFBFBD><EFBFBD><EFBFBD><0F><><7F><EFBFBD><15>MTIERS~1<00>`P<00>%<25>\C<><04><01><><EFBFBD><EFBFBD><EFBFBD><0F><01><><EFBFBD><EFBFBD><EFBFBD><0F><><7F><EFBFBD><15>m<00>tierb<00> hT<00>7D]<5D><><0F><1E><><EFBFBD><EFBFBD><0F>J<><4A><EFBFBD><EFBFBD><0F>lW<6C><14><00> Test.javaTM<00> hV<00>7D]<5D><><0F><1E><><EFBFBD><EFBFBD><0F>J<><4A><EFBFBD><EFBFBD><0F>lW<6C><14><00>
TEST~1.JAV<00><00><><EFBFBD><EFBFBD><EFBFBD>yG _TESTJ~1.TMP<00><><EFBFBD><EFBFBD><EFBFBD>yG<1E><><EFBFBD><EFBFBD><0F><1E><><EFBFBD><EFBFBD><0F><1E><><EFBFBD><EFBFBD><0F><00> _TESTJ~1.TMP<00><><EFBFBD><EFBFBD><EFBFBD>yG<1E><><EFBFBD><EFBFBD><0F><1E><><EFBFBD><EFBFBD><0F><1E><><EFBFBD><EFBFBD><0F><00> _TESTJ~1.TMP<00><><EFBFBD><EFBFBD><EFBFBD>yGbFILE0:<3A>8<00><00><00>`H<00><><EFBFBD>̌<04><><7F>̌<04><><7F>̌<04><01>f<EFBFBD>)<29><14> ,<00><>X 0pX<00><00><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04><01><><EFBFBD>̌<04> manifest.mf<00>pUManifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build
<00><><EFBFBD><EFBFBD><EFBFBD>yG<00><00>FILE0u,8@<00><00>`H""=ڌ<04><55><D589><0F><55><D589><0F>j1<6A><31><15>+H<>X 0hJ<00>""=ڌ<04>""=ڌ<04>""=ڌ<04>""=ڌ<04>.git0hL<00>""=ڌ<04>""=ڌ<04>""=ڌ<04>""=ڌ<04>GIT~1<00>X8 $I300((<00>P@H<00>$I30Aʿ[<00>( $I30<00><><EFBFBD><EFBFBD><EFBFBD>yGJrڌ<04>hooks<00>`J<00>7<><04>7<><04>7<><04>7<><04>logs<00>`P<00><00><><04><01><><04><01><><04><01><><04>objects<00>`J<00>/Zhڌ<04>/Zhڌ<04>/Zhڌ<04>/Zhڌ<04>refs<00><><EFBFBD><EFBFBD><EFBFBD>yG<00>FILE0<00>/8x<00><00>s`H/Zhڌ<04>EE <20>g<0F>EE <20>g<0F><01><><EFBFBD><EFBFBD><15>+<00><>X 0hJ<00>/Zhڌ<04>/Zhڌ<04>/Zhڌ<04>/Zhڌ<04>refs<00>pP $I300@@<00>`L<00>rhڌ<04><08><0F><08><0F>j1<6A><31><15>heads<00>`P<00><00>M
6<EFBFBD><04><04>
6<EFBFBD><04><04>
6<EFBFBD><04>j1<6A><31><15>remote<00><00>`J<00>0<><04>0<><04>0<><04>j1<6A><31><15>tags<00><><EFBFBD><EFBFBD><EFBFBD>yG`J<00>0<><04>0<><04>0<><04>1<><31><EFBFBD>d<0F>tags<00><><EFBFBD><EFBFBD><EFBFBD>yG<11>0<><04>0<><04>0<><04>1<><31><EFBFBD>d<0F>tags<00><><EFBFBD><EFBFBD><EFBFBD>yG<00>FILE0<00>.8<00><00>`Hrhڌ<04><08><0F><08><0F>j1<6A><31><15>+h<>X 0hL<00>rhڌ<04>rhڌ<04>rhڌ<04>rhڌ<04>heads<00><00> $I300<00><00><00> XF<00><08>+<2B>g<0E>U<>+<2B>g<0E><01><>.<2E>g<0E><01>-<2D> <20><14>0) dts
`N<00>y<1F><08><0F><01><><EFBFBD><08><0F><08><0F>f|<7C> <20><14>0) master~<00><00><><EFBFBD><EFBFBD><EFBFBD>yG<00><><EFBFBD><EFBFBD><EFBFBD>yG<11><><EFBFBD><08><0F><01><><EFBFBD><08><0F><01><><EFBFBD><08><0F>0) MASTER~1.LOC<00><><EFBFBD><EFBFBD><EFBFBD>yG<11><><EFBFBD><08><0F><01><><EFBFBD><08><0F>0) MASTER~1.LOC<00><><EFBFBD><EFBFBD><EFBFBD>yG PROBE-~1<00><><EFBFBD><EFBFBD><EFBFBD>yG<00>FILE0<00>/8X<00>C`H0<><04>0<><04>0<><04>j1<6A><31><15>+<00><>X 0hJ<00>0<><04>0<><04>0<><04>0<><04>tags<00>P0 $I300 <00><><EFBFBD><EFBFBD><EFBFBD>yGCCFILE0No
8<00>C`H7<><04><01>,<2C><><EFBFBD><04><01>,<2C><><EFBFBD><04><01>_<EFBFBD><5F>,
<EFBFBD>+<00><>X 0hJ<00>7<><04>7<><04>7<><04>7<><04>logs<00><00> $I300<00><00><00>`J<00><00>,<2C><><EFBFBD><04>'`<60><><EFBFBD><0F>'`<60><><EFBFBD><0F>'`<60><><EFBFBD><0F><00> HEAD<00>`J<00>7<><04><01><><04><01><><04><01>_<EFBFBD><5F>,
<EFBFBD>refsC<00><><EFBFBD><EFBFBD><EFBFBD>yGCFILE0<00>o
8<00>Cs`H7<><04><01><><04><01><><04><01>_<EFBFBD><5F>,
<EFBFBD>+<18>X 0hJ<00>7<><04>7<><04>7<><04>7<><04>refs<00><00> $I300<00><00><00>`L<00><00><><04><01>ۮ<EFBFBD><DBAE> <09><01>ۮ<EFBFBD><DBAE> <09><01>_<EFBFBD><5F>,
<EFBFBD>heads`P<00>P6<><04>P6<><04>P6<><04><01>_<EFBFBD><5F>,
<EFBFBD>remoteC<00><><EFBFBD><EFBFBD><EFBFBD>yGCFILE0<00>o
8<00>C`H<00><><04><01>ۮ<EFBFBD><DBAE> <09><01>ۮ<EFBFBD><DBAE> <09><01>_<EFBFBD><5F>,
<EFBFBD>+<00><>X 0hL<00><00><><04><01><><04><01><><04><01><><04>heads<00><00> $I300<00><00><00>XF<00><00>ۮ<EFBFBD><DBAE> <09><01><>.<2E>g<0E><01><>.<2E>g<0E><01><>.<2E>g<0E><00> dts<00>`N<00><00><><EFBFBD><EFBFBD><EFBFBD><04>}<7D><><08><0F>}<7D><><08><0F>}<7D><><08><0F>n masterC<00><><EFBFBD><EFBFBD><EFBFBD>yGC
</condition>
<echo level="${jar.usage.level}" message="${jar.usage.message}"/>
</target>
<target depends="-do-jar-copylibs" if="do.archive" name="-do-jar-delete-manifest">
<delete>
<fileset file="${tmp.manifest.file}"/>
</delete>
</target>
<target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-jar,-do-jar-delete-manifest" name="-do-jar-without-libraries"/>
<target depends="init,compile,-pre-pre-jar,-pre-jar,-do-jar-create-manifest,-do-jar-copy-manifest,-do-jar-set-mainclass,-do-jar-set-profile,-do-jar-set-splashscreen,-do-jar-copylibs,-do-jar-delete-manifest" name="-do-jar-with-libraries"/>
<target name="-post-jar">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,compile,-pre-jar,-set-module-main-class,-do-jar-without-libraries,-do-jar-with-libraries,-post-jar" name="-do-jar"/>
<target depends="init,compile,-pre-jar,-do-jar,-post-jar,deploy" description="Build JAR." name="jar"/>
<!--
=================
DEPLOY SECTION
=================
-->
<target name="-pre-deploy">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init" name="-check-jlink">
<condition property="do.jlink.internal">
<and>
<istrue value="${do.jlink}"/>
<isset property="do.archive"/>
<isset property="named.module.internal"/>
</and>
</condition>
</target>
<target depends="init,-do-jar,-post-jar,-pre-deploy,-check-jlink" if="do.jlink.internal" name="-do-deploy">
<delete dir="${dist.jlink.dir}" failonerror="false" quiet="true"/>
<property name="jlink.launcher.name" value="${application.title}"/>
<condition else="${module.name}" property="jlink.add.modules" value="${module.name},${jlink.additionalmodules}">
<and>
<isset property="jlink.additionalmodules"/>
<length length="0" string="${jlink.additionalmodules}" when="greater"/>
</and>
</condition>
<condition property="jlink.do.strip.internal">
<and>
<isset property="jlink.strip"/>
<istrue value="${jlink.strip}"/>
</and>
</condition>
<condition property="jlink.do.additionalparam.internal">
<and>
<isset property="jlink.additionalparam"/>
<length length="0" string="${jlink.additionalparam}" when="greater"/>
</and>
</condition>
<condition property="jlink.do.launcher.internal">
<and>
<istrue value="${jlink.launcher}"/>
<isset property="main.class.available"/>
</and>
</condition>
<property name="platform.jlink" value="${jdk.home}/bin/jlink"/>
<property name="jlink.systemmodules.internal" value="${jdk.home}/jmods"/>
<exec executable="${platform.jlink}">
<arg value="--module-path"/>
<arg path="${jlink.systemmodules.internal}:${run.modulepath}:${dist.jar}"/>
<arg value="--add-modules"/>
<arg value="${jlink.add.modules}"/>
<arg if:set="jlink.do.strip.internal" value="--strip-debug"/>
<arg if:set="jlink.do.launcher.internal" value="--launcher"/>
<arg if:set="jlink.do.launcher.internal" value="${jlink.launcher.name}=${module.name}/${main.class}"/>
<arg if:set="jlink.do.additionalparam.internal" line="${jlink.additionalparam}"/>
<arg value="--output"/>
<arg value="${dist.jlink.output}"/>
</exec>
</target>
<tarFILE0<EFBFBD>o
8X<EFBFBD>e`HJrڌ<EFBFBD>Jrڌ<EFBFBD>Jrڌ<EFBFBD><EFBFBD>_<EFBFBD><EFBFBD>,
<EFBFBD>+<EFBFBD><EFBFBD>X 0hL<EFBFBD>Jrڌ<EFBFBD>Jrڌ<EFBFBD>Jrڌ<EFBFBD>Jrڌ<EFBFBD>hooks<EFBFBD>P0 $I300 <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>yGeeFILE0C~j
8<EFBFBD><EFBFBD>%`H]><EFBFBD><EFBFBD>E <09>]<5D>)k<0E>]<5D>)k<0E>]<5D>)k<0E> ,x<>z 0xZ<00>]><3E><>E <09>]<5D>)k<0E>]<5D>)k<0E>]<5D>)k<0E> ENTREP~1.CLA0<00>b<00>]><3E><>E <09>]<5D>)k<0E>]<5D>)k<0E>]<5D>)k<0E> Entreprise.class<00>H@U
U
A;<3B><><00><><EFBFBD><EFBFBD><EFBFBD>yG%%FILE0-8<00><00>a`H<00>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04>j1<6A><31><15>+8<>X 0pR<00><00>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04>CLASSE~10x`<00><00>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04><01>n<EFBFBD><6E><EFBFBD><04>classes m<00>tiers<00>P0 $I300 <00><><EFBFBD><EFBFBD><EFBFBD>yGaaFILE0<00>-8 <00>_t`H<00><><1E><><04> <09><><EFBFBD>\
<EFBFBD> <09><><EFBFBD>\
<EFBFBD>j1<6A><31><15>+<00>3Y 0hJ<00><00><><1E><><04><01><><1E><><04><01><><1E><><04><01><><1E><><04>test<00><00> $I300<00><00><00>hR<00> <09><><EFBFBD>\
<EFBFBD><01>V<EFBFBD><56><EFBFBD><0F><01>V<EFBFBD><56><EFBFBD><0F>j1<6A><31><15>MTIERS~1<00>`P<00> <09><><EFBFBD>\
<EFBFBD><01>V<EFBFBD><56><EFBFBD><0F><01>V<EFBFBD><56><EFBFBD><0F>j1<6A><31><15>m<00>_iers<00><><EFBFBD><EFBFBD><EFBFBD>yG_FILE0`08H<00>]`H%<25>\C<><04><01><><EFBFBD><EFBFBD><EFBFBD><0F><01><><EFBFBD><EFBFBD><EFBFBD><0F><><7F><EFBFBD><15>+<00>X 0hP<00>%<25>\C<><04>%<25>\C<><04>%<25>\C<><04>%<25>\C<><04>m<00>tiers0pR<00>%<25>\C<><04>%<25>\C<><04>%<25>\C<><04>%<25>\C<><04>MTIERS~1<00>X8 $I300((<00>P@H]$I30A˿[<00>( $I30<00><><EFBFBD><EFBFBD><EFBFBD>yG<11>T0<30><04><01>T0<30><04>0. COMMAN~1.JAVava<00>p`<00><00>q<><04>Hr<><04>Hr<><04>Hr<><04>00 Entreprise.java<00>pZ<00><00>q<><04>Hr<><04>Hr<><04>Hr<><04>00 ENTREP~1.JAV<00>p`<00><00>7臍<04><01>7臍<04><01>7臍<04><01>7臍<04> Instrument.java<00><><EFBFBD><EFBFBD><EFBFBD>yG]FILE0<00><>8<00><00>M`H1<><31><EFBFBD>E <09>F<><46><EFBFBD>E <09>Z <0B><>E <09><1A>tW<74><14> ,`p] 0xZ<00>1<><31><EFBFBD>E <09>F<><46><EFBFBD>E <09>F<><46><EFBFBD>E <09>F<><46><EFBFBD>E <09>5 INSTRU~1.JAV0x`<00>1<><31><EFBFBD>E <09>F<><46><EFBFBD>E <09>F<><46><EFBFBD>E <09>F<><46><EFBFBD>E <09>5 Instrument.java<00>H@55A<01><><EFBFBD><00><><EFBFBD><EFBFBD><EFBFBD>yG@55MA<01><><EFBFBD><00><><EFBFBD><EFBFBD><EFBFBD>yGMFILE0a<>
8<00><00>`H<00><><1D>h<0F><01>R:<3A><0F><01>R:<3A><0F><01>O<EFBFBD><1C><14> ,<00>~} 0xZ<00><00><><1D>h<0F><01><><1D>h<0F><01><><1D>h<0F><01><><1D>h<0F><00> PROJEC~1.PRO0<00>f<00><00><><1D>h<0F><01><><1D>h<0F><01><><1D>h<0F><01><><1D>h<0F><00> project.properties<00>H@<00> <00> AM<><4D><00><><EFBFBD><EFBFBD><EFBFBD>yG@<00> <00> A<01> <09><00><><EFBFBD><EFBFBD><EFBFBD>yGFILE0<00>,8H<00>:`H <09><><EFBFBD>\
<EFBFBD><01>V<EFBFBD><56><EFBFBD><0F><01>V<EFBFBD><56><EFBFBD><0F>j1<6A><31><15>3<00>x 0hP<00> <09><><EFBFBD>\
<EFBFBD> <09><><EFBFBD>\
<EFBFBD> <09><><EFBFBD>\
<EFBFBD> <09><><EFBFBD>\
<EFBFBD>m<00>tiers0pR<00> <09><><EFBFBD>\
<EFBFBD> <09><><EFBFBD>\
<EFBFBD> <09><><EFBFBD>\
<EFBFBD> <09><><EFBFBD>\
<EFBFBD>MTIERS~1<00>X8 $I300((<00>P@H:$I30A=<3D><><00>( $I30<00><><EFBFBD><EFBFBD><EFBFBD>yG<11><><EFBFBD><EFBFBD>g<0E><01><><EFBFBD><EFBFBD>g<0E><01><><EFBFBD><EFBFBD>g<0E>: COMMAN~1.JAV.xm<00>pZ<00>Ɋ<><C98A>\
<EFBFBD>Ɋ<><C98A>\
<EFBFBD>Ɋ<><C98A>\
<EFBFBD>ȁ<>Eb<0E><00> MTIERS~1.XML.xm<00>xb<00>Ɋ<><C98A>\
<EFBFBD>Ɋ<><C98A>\
<EFBFBD>Ɋ<><C98A>\
<EFBFBD>ȁ<>Eb<0E><00> M<00>tiersSuite.xml<00><><EFBFBD><EFBFBD><EFBFBD>yG _COMMA~1.TMP<00><><EFBFBD><EFBFBD><EFBFBD>yG:t-single"/>
</target>
<target depends="-profile-check" description="Profile a selected class in the IDE." if="profiler.configured" name="profile-test-with-main">
<fail unless="run.class">Must select one file in the IDE or set run.class</fail>
<startprofiler/>
<antcall target="run-test-with-main"/>
</target>
<target depends="-profile-check,-profile-applet-pre72" if="profiler.configured" name="profile-applet" unless="profiler.info.jvmargs.agent">
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
<startprofiler/>
<antcall target="run-applet"/>
</target>
<!--
===============
JAVADOC SECTION
===============
-->
<target depends="init" if="have.sources" name="-javadoc-build">
<mkdir dir="${dist.javadoc.dir}"/>
<condition else="" property="javadoc.endorsed.classpath.cmd.line.arg" value="-J${endorsed.classpath.cmd.line.arg}">
<and>
<isset property="endorsed.classpath.cmd.line.arg"/>
<not>
<equals arg1="${endorsed.classpath.cmd.line.arg}" arg2=""/>
</not>
</and>
</condition>
<condition else="" property="bug5101868workaround" value="*.java">
<matches pattern="1\.[56](\..*)?" string="${java.version}"/>
</condition>
<condition else="" property="javadoc.html5.cmd.line.arg" value="-html5">
<and>
<isset property="javadoc.html5"/>
<available file="${jdk.home}${file.separator}lib${file.separator}jrt-fs.jar"/>
</and>
</condition>
<javadoc additionalparam="-J-Dfile.encoding=${file.encoding} ${javadoc.additionalparam}" author="${javadoc.author}" charset="UTF-8" destdir="${dist.javadoc.dir}" docencoding="UTF-8" encoding="${javadoc.encoding.used}" failonerror="true" noindex="${javadoc.noindex}" nonavbar="${javadoc.nonavbar}" notree="${javadoc.notree}" private="${javadoc.private}" source="${javac.source}" splitindex="${javadoc.splitindex}" use="${javadoc.use}" useexternalfile="true" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}">
<classpath>
<path path="${javac.classpath}"/>
</classpath>
<fileset dir="${src.dir}" excludes="${bug5101868workaround},${excludes}" includes="${includes}">
<filename name="**/*.java"/>
</fileset>
<fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
<include name="**/*.java"/>
<exclude name="*.java"/>
</fileset>
<arg line="${javadoc.endorsed.classpath.cmd.line.arg}"/>
<arg line="${javadoc.html5.cmd.line.arg}"/>
</javadoc>
<copy todir="${dist.javadoc.dir}">
<fileset dir="${src.dir}" excludes="${excludes}" includes="${includes}">
<filename name="**/doc-files/**"/>
</fileset>
<fileset dir="${build.generated.sources.dir}" erroronmissingdir="false">
<include name="**/doc-files/**"/>
</fileset>
</copy>
</target>
<target depends="init,-javadoc-build" if="netbeans.home" name="-javadoc-browse" unless="no.javadoc.preview">
<nbbrowse file="${dist.javadoc.dir}/index.html"/>
</target>
<target depends="init,-javadoc-build,-javadoc-browse" description="Build Javadoc." name="javadoc"/>
<!--
=========================
TEST COMPILATION SECTION
=========================
-->
<target depends="init,compile" if="have.tests" name="-pre-pre-compile-test">
<mkdir dir="${build.test.classes.dir}"/>
</target>
<target name="-pre-compile-test">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="-init-source-module-properties" if="named.module.internal" name="-init-test-javac-module-properties-with-module">
<j2seproject3:modulename property="test.module.name" sourcepath="${test.src.dir}"/>
<condition else="${empty.dir}" property="javac.test.sourcepath" value="${test.src.dir}">
<and>
<isset property="test.module.name"/>
<length length="0" string="${test.module.name}" when="greater"/>
</and>
</condition>
<condition else="--patch-module ${module.name}=${test.src.dir} --add-reads ${module.name}=ALL-UNNAMED" property="javac.test.compilerargs" value="--add-reads ${test.module.name}=ALL-UNNAMED">
<and>
<isset property="test.module.name"/>
<length length="0" string="${test.module.name}" when="greater"/>
</and>
</condition>
</target>
<target depends="-init-source-module-properties" if="named.module.internal" name="-init-test-run-module-properties">
<condition else="${module.name}" property="run.test.addexport.source.module.internal" value="${test.module.name}">
<and>
<isset property="test.module.name"/>
<length length="0" string="${test.module.name}" when="greater"/>
</and>
</condition>
<fileset dir="${build.test.classes.dir}" id="run.test.packages.internal" includes="**/*.class"/>
<property location="${build.test.classes.dir}" name="build.test.classes.dir.abs.internal"/>
<pathconvert pathsep=" " property="run.test.addexports.internal" refid="run.test.packages.internal">
<chainedmapper>
<regexpmapper from="^(.*)\Q${file.separator}\E.*\.class$$" to="\1"/>
<filtermapper>
<uniqfilter/>
<replacestring from="${build.test.classes.dir.abs.internal}" to=""/>
</filtermapper>
<cutdirsmapper dirs="1"/>
<packagemapper from="*" to="--add-exports ${run.test.addexport.source.module.internal}/*=ALL-UNNAMED"/>
</chainedmapper>
</pathconvert>
<condition else="--patch-module ${module.name}=${build.test.classes.dir} --add-modules ${module.name} --add-reads ${module.name}=ALL-UNNAMED ${run.test.addexports.internal}" property="run.test.jvmargs" value="--add-modules ${test.module.name} --add-reads ${test.module.name}=ALL-UNNAMED ${run.test.addexports.internal}">
<and>
<isset property="test.module.name"/>
<length length="0" string="${test.module.name}" when="greater"/>
</and>
</condition>
</target>
<target depends="-init-source-module-properties" name="-init-test-module-properties-without-module" unless="named.module.internal">
<property name="javac.test.sourcepath" value="${empty.dir}"/>
<property name="javac.test.compilerargs" value=""/>
<property name="run.test.jvmargs" value=""/>
</target>
<target depends="-init-test-javac-module-properties-with-module,-init-test-module-properties-without-module" name="-init-test-module-properties"/>
<target if="do.depend.true" name="-compile-test-depend">
<j2seproject3:depend classpath="${javac.test.classpath}" destdir="${build.test.classes.dir}" srcdir="${test.src.dir}"/>
</target>
<target depends="init,deps-jar,compile,-init-test-module-properties,-pre-pre-compile-test,-pre-compile-test,-compile-test-depend" if="have.tests" name="-do-compile-test">
<j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" modulepath="${javac.test.modulepath}" processorpath="${javac.test.processorpath}" sourcepath="${javac.test.sourcepath}" srcdir="${test.src.dir}">
<customize>
<compilerarg line="${javac.test.compilerargs}"/>
</customize>
</j2seproject3:javac>
<copy todir="${build.test.classes.dir}">
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
</copy>
</target>
<target name="-post-compile-test">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test,-do-compile-test,-post-compile-test" name="compile-test"/>
<target name="-pre-compile-test-single">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,deps-jar,compile,-init-test-module-properties,-pre-pre-compile-test,-pre-compile-test-single" if="have.tests" name="-do-compile-test-single">
<fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail>
<j2seproject3:force-recompile destdir="${build.test.classes.dir}"/>
<j2seproject3:javac apgeneratedsrcdir="${build.test.classes.dir}" classpath="${javac.test.classpath}" debug="true" destdir="${build.test.classes.dir}" excludes="" includes="${javac.includes}, module-info.java" modulepath="${javac.test.modulepath}" processorpath="${javac.test.processorpath}" sourcepath="${test.src.dir}" srcdir="${test.src.dir}">
<customize>
<compilerarg line="${javac.test.compilerargs}"/>
</customize>
</j2seproject3:javac>
<copy todir="${build.test.classes.dir}">
<fileset dir="${test.src.dir}" excludes="${build.classes.excludes},${excludes}" includes="${includes}"/>
</copy>
</target>
<target name="-post-compile-test-single">
<!-- Empty placeholder for easier customization. -->
<!-- You can override this target in the ../build.xml file. -->
</target>
<target depends="init,compile,-pre-pre-compile-test,-pre-compile-test-single,-do-compile-test-single,-post-compile-test-single" name="compile-test-single"/>
<!--
=======================
TEST EXECUTION SECTION
=======================
-->
<target depends="init" if="have.tests" name="-pre-test-run">
<mkdir dir="${build.test.results.dir}"/>
</target>
<target depends="init,compile-test,-init-test-run-module-properties,-pre-test-run" if="have.tests" name="-do-test-run">
<j2seproject3:test includes="${includes}" testincludes="**/*Test.java"/>
</target>
<target depends="init,compile-test,-pre-test-run,-do-test-run" if="have.tests" name="-post-test-run">
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
</target>
<target depends="init" if="have.tests" name="test-report"/>
<target depends="init" if="netbeans.home+have.tests" name="-test-browse"/>
<target depends="init,compile-test,-pre-test-run,-do-test-run,test-report,-post-test-run,-test-browse" description="Run unit tests." name="test"/>
<target depends="init" if="have.tests" name="-pre-test-run-single">
<mkdir dir="${build.test.results.dir}"/>
</target>
<target depends="init,compile-test-single,-init-test-run-module-properties,-pre-test-run-single" if="have.tests" name="-do-test-run-single">
<fail unless="test.includes">Must select some files in the IDE or set test.includes</fail>
<j2seproject3:test excludes="" includes="${test.includes}" testincludes="${test.includes}"/>
</target>
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single" if="have.tests" name="-post-test-run-single">
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
</target>
<target depends="init,compile-test-single,-init-test-run-module-properties,-pre-test-run-single,-do-test-run-single,-post-test-run-single" description="Run single unit test." name="test-single"/>
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-do-test-run-single-method">
<fail unless="test.class">Must select some files in the IDE or set test.class</fail>
<fail unless="test.method">Must select some method in the IDE or set test.method</fail>
<j2seproject3:test excludes="" includes="${javac.includes}" testincludes="${test.class}" testmethods="${test.method}"/>
</target>
<target depends="init,compile-test-single,-pre-test-run-single,-do-test-run-single-method" if="have.tests" name="-post-test-run-single-method">
<fail if="tests.failed" unless="ignore.failing.tests">Some tests failed; see details above.</fail>
</target>
<target depends="init,compile-test-single,-init-test-run-module-properties,-pre-test-run-single,-do-test-run-single-method,-post-test-run-single-method" description="Run single unit test." name="test-single-method"/>
<!--
=======================
TEST DEBUGGING SECTION
=======================
-->
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test">
<fail unless="test.class">Must select one file in the IDE or set test.class</fail>
<j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testincludes="${javac.includes}"/>
</target>
<target depends="init,compile-test-single,-pre-test-run-single" if="have.tests" name="-debug-start-debuggee-test-method">
<fail unless="test.class">Must select one file in the IDE or set test.class</fail>
<fail unless="test.method">Must select some method in the IDE or set test.method</fail>
<j2seproject3:test-debug excludes="" includes="${javac.includes}" testClass="${test.class}" testMethod="${test.method}" testincludes="${test.class}" testmethods="${test.method}"/>
</target>
<target depends="init,compile-test" if="netbeans.home+have.tests" name="-debug-start-debugger-test">
<j2seproject1:nbjpdastart classpath="${debug.test.classpath}" name="${test.class}"/>
</target>
<target depends="init,compile-test-single,-init-test-run-module-properties,-debug-start-debugger-test,-debug-start-debuggee-test" name="debug-test"/>
<target depends="init,compile-test-single,-init-test-run-module-properties,-debug-start-debugger-test,-debug-start-debuggee-test-method" name="debug-test-method"/>
<target depends="debug-test-method" name="debug-single-method"/>
<target depends="init,-pre-debug-fix,compile-test-single" if="netbeans.home" name="-do-debug-fix-test">
<j2seproject1:nbjpdareload dir="${build.test.classes.dir}"/>
</target>
<target depends="init,-pre-debug-fix,-do-debug-fix-test" if="netbeans.home" name="debug-fix-test"/>
<!--
=========================
APPLET EXECUTION SECTION
=========================
-->
<target depends="init,compile-single" name="run-applet">
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
<j2seproject1:java classname="sun.applet.AppletViewer">
<customize>
<arg value="${applet.url}"/>
</customize>
</j2seproject1:java>
</target>
<!--
=========================
APPLET DEBUGGING SECTION
=========================
-->
<target depends="init,compile-single" if="netbeans.home" name="-debug-start-debuggee-applet">
<fail unless="applet.url">Must select one file in the IDE or set applet.url</fail>
<j2seproject3:debug classname="sun.applet.AppletViewer">
<customizeDebuggee>
<arg value="${applet.url}"/>
</customizeDebuggee>
</j2seproject3:debug>
</target>
<target depends="init,compile-single,-debug-start-debugger,-debug-start-debuggee-applet" if="netbeanFILE0<00>
8<EFBFBD><EFBFBD>S<EFBFBD><EFBFBD>`H<EFBFBD>+<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?<EFBFBD>0E <EFBFBD>!,<EFBFBD>Y 0pR<EFBFBD><EFBFBD>+<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> F88E29~10<EFBFBD><EFBFBD><EFBFBD><EFBFBD>+<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> &f88e29c996ca5eb55c68678a0e2e3b34bb017d<EFBFBD><EFBFBD><EFBFBD>x<EFBFBD><EFBFBD><EFBFBD>Aj1 E<EFBFBD>6<EFBFBD>Z4<EFBFBD><EFBFBD>vS
<EFBFBD>5<EFBFBD>M<EFBFBD>F<EFBFBD><EFBFBD>HRB<EFBFBD>s<EFBFBD>b<EFBFBD>d<EFBFBD> T}<EFBFBD><EFBFBD>S<EFBFBD><EFBFBD>i<EFBFBD><EFBFBD><EFBFBD>:k<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>{yq<EFBFBD><EFBFBD>XE<EFBFBD>ׯ(<EFBFBD><EFBFBD><EFBFBD>4+<EFBFBD><EFBFBD><EFBFBD>cT<EFBFBD><EFBFBD>i<EFBFBD>g<EFBFBD><EFBFBD><EFBFBD>Gօ<EFBFBD>B<EFBFBD>X<EFBFBD> 4&<EFBFBD><EFBFBD><EFBFBD>?<EFBFBD><EFBFBD>Ƚ/~p<EFBFBD>S8m<EFBFBD><EFBFBD><EFBFBD>zsN<EFBFBD>Κ<EFBFBD>-6l<EFBFBD><EFBFBD>5<EFBFBD> <EFBFBD><EFBFBD>X<EFBFBD><EFBFBD><EFBFBD><EFBFBD>W<EFBFBD><EFBFBD><EFBFBD>=<EFBFBD><EFBFBD>L<EFBFBD><EFBFBD><EFBFBD><EFBFBD>R<EFBFBD><EFBFBD>?<EFBFBD>v<EFBFBD><EFBFBD>Et3<EFBFBD>c<EFBFBD><EFBFBD><EFBFBD><EFBFBD>d<EFBFBD>sgA<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>yGSFILE0<EFBFBD>+8<EFBFBD><EFBFBD>D`H<EFBFBD>M
6<EFBFBD><EFBFBD><EFBFBD>
6<EFBFBD><EFBFBD><EFBFBD>
6<EFBFBD><EFBFBD>j1<EFBFBD><EFBFBD><EFBFBD>+@<EFBFBD>Y 0hP<EFBFBD><EFBFBD>M
6<EFBFBD><EFBFBD><EFBFBD>M
6<EFBFBD><EFBFBD><EFBFBD>M
6<EFBFBD><EFBFBD><EFBFBD>M
6<EFBFBD><EFBFBD>remotes<EFBFBD><EFBFBD><EFBFBD> $I300<EFBFBD><EFBFBD><EFBFBD>`N<EFBFBD><EFBFBD>
6<EFBFBD><EFBFBD>r2<EFBFBD><EFBFBD>r2<EFBFBD><EFBFBD>j1<EFBFBD><EFBFBD><EFBFBD>origin<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>yGDDFILE0`t
8 <EFBFBD>?`H<EFBFBD>X7<EFBFBD>E <EFBFBD>8<EFBFBD>C<EFBFBD>E <EFBFBD>`I<EFBFBD>E <EFBFBD><EFBFBD>Bc<EFBFBD><EFBFBD><EFBFBD>!,<EFBFBD>K] 0xZ<EFBFBD><EFBFBD>X7<EFBFBD>E <EFBFBD>8<EFBFBD>C<EFBFBD>E <EFBFBD><EFBFBD>=F<EFBFBD>E <EFBFBD>8<EFBFBD>C<EFBFBD>E <EFBFBD>@j0! PACK-7~1.PAC0<EFBFBD><EFBFBD><EFBFBD><EFBFBD>X7<EFBFBD>E <EFBFBD>8<EFBFBD>C<EFBFBD>E <EFBFBD>