| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| --> |
| <!-- |
| *** 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 |
| - junit compilation |
| - junit execution |
| - junit debugging |
| - cleanup |
| |
| --> |
| <project name="debugTestProject-impl" default="build" basedir=".."> |
| <target name="default" depends="test,jar,javadoc" description="Build and test whole project."/> |
| <!-- |
| ====================== |
| INITIALIZATION SECTION |
| ====================== |
| --> |
| <target name="pre-init"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="init-private" depends="pre-init"> |
| <property file="nbproject/private/private.properties"/> |
| </target> |
| <target name="init-user" depends="pre-init,init-private"> |
| <property file="${user.properties.file}"/> |
| </target> |
| <target name="init-project" depends="pre-init,init-private,init-user"> |
| <property file="nbproject/project.properties"/> |
| </target> |
| <target name="do-init" depends="pre-init,init-private,init-user,init-project,init-macrodef-property"> |
| <!-- The two properties below are usually overridden --> |
| <!-- by the active platform. Just a fallback. --> |
| <property name="default.javac.source" value="1.4"/> |
| <property name="default.javac.target" value="1.4"/> |
| <available property="have.tests" file="${test.src.dir}"/> |
| <condition property="netbeans.home+have.tests"> |
| <and> |
| <isset property="netbeans.home"/> |
| <isset property="have.tests"/> |
| </and> |
| </condition> |
| <condition property="no.javadoc.preview"> |
| <isfalse value="${javadoc.preview}"/> |
| </condition> |
| </target> |
| <target name="post-init"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="init-check" depends="pre-init,init-private,init-user,init-project,do-init"> |
| <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 name="init-macrodef-javac"> |
| <macrodef name="javac" uri="http://www.netbeans.org/ns/j2se-project/1"> |
| <attribute name="srcdir" default="${src.dir}"/> |
| <attribute name="destdir" default="${build.classes.dir}"/> |
| <attribute name="classpath" default="${javac.classpath}"/> |
| <attribute name="debug" default="${javac.debug}"/> |
| <element name="customize" optional="true"/> |
| <sequential> |
| <javac srcdir="@{srcdir}" destdir="@{destdir}" debug="@{debug}" deprecation="${javac.deprecation}" source="${javac.source}" target="${javac.target}" includeantruntime="false"> |
| <classpath> |
| <path path="@{classpath}"/> |
| </classpath> |
| <customize/> |
| </javac> |
| </sequential> |
| </macrodef> |
| </target> |
| <target name="init-macrodef-junit"> |
| <macrodef name="junit" uri="http://www.netbeans.org/ns/j2se-project/1"> |
| <attribute name="includes" default="**/*Test.java"/> |
| <sequential> |
| <junit showoutput="true" fork="true" failureproperty="tests.failed" errorproperty="tests.failed"> |
| <batchtest todir="${build.test.results.dir}"> |
| <fileset dir="${test.src.dir}"> |
| <include name="@{includes}"/> |
| </fileset> |
| </batchtest> |
| <classpath> |
| <path path="${run.test.classpath}"/> |
| </classpath> |
| <formatter type="brief" usefile="false"/> |
| </junit> |
| </sequential> |
| </macrodef> |
| </target> |
| <target name="init-macrodef-nbjpda"> |
| <macrodef name="nbjpdastart" uri="http://www.netbeans.org/ns/j2se-project/1"> |
| <attribute name="name" default="${main.class}"/> |
| <attribute name="classpath" default="${debug.classpath}"/> |
| <attribute name="stopclassname" default=""/> |
| <sequential> |
| <nbjpdastart transport="dt_socket" addressproperty="jpda.address" name="@{name}" stopclassname="@{stopclassname}"> |
| <classpath> |
| <path path="@{classpath}"/> |
| </classpath> |
| </nbjpdastart> |
| </sequential> |
| </macrodef> |
| <macrodef name="nbjpdareload" uri="http://www.netbeans.org/ns/j2se-project/1"> |
| <attribute name="dir" default="${build.classes.dir}"/> |
| <sequential> |
| <nbjpdareload> |
| <fileset includes="${fix.includes}*.class" dir="@{dir}"/> |
| </nbjpdareload> |
| </sequential> |
| </macrodef> |
| </target> |
| <target name="init-macrodef-debug"> |
| <macrodef name="debug" uri="http://www.netbeans.org/ns/j2se-project/1"> |
| <attribute name="classname" default="${main.class}"/> |
| <attribute name="classpath" default="${debug.classpath}"/> |
| <attribute name="args" default="${application.args}"/> |
| <sequential> |
| <java fork="true" classname="@{classname}"> |
| <jvmarg value="-Xdebug"/> |
| <jvmarg value="-Xrunjdwp:transport=dt_socket,address=${jpda.address}"/> |
| <classpath> |
| <path path="@{classpath}"/> |
| </classpath> |
| <arg line="@{args}"/> |
| </java> |
| </sequential> |
| </macrodef> |
| </target> |
| <target name="init-macrodef-java"> |
| <macrodef name="java" uri="http://www.netbeans.org/ns/j2se-project/1"> |
| <attribute name="classname" default="${main.class}"/> |
| <element name="customize" optional="true"/> |
| <sequential> |
| <java fork="true" classname="@{classname}"> |
| <classpath> |
| <path path="${run.classpath}"/> |
| </classpath> |
| <customize/> |
| </java> |
| </sequential> |
| </macrodef> |
| </target> |
| <target name="init" 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"/> |
| <!-- |
| =================== |
| COMPILATION SECTION |
| =================== |
| --> |
| <target name="deps-jar" depends="init" unless="no.dependencies"/> |
| <target name="pre-pre-compile" depends="init,deps-jar"> |
| <mkdir dir="${build.classes.dir}"/> |
| </target> |
| <target name="pre-compile"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="do-compile" depends="init,deps-jar,pre-pre-compile,pre-compile"> |
| <j2seproject:javac xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| <copy todir="${build.classes.dir}"> |
| <fileset dir="${src.dir}" excludes="${build.classes.excludes}"/> |
| </copy> |
| </target> |
| <target name="post-compile"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="compile" depends="init,deps-jar,pre-pre-compile,pre-compile,do-compile,post-compile" description="Compile project."/> |
| <target name="pre-compile-single"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="do-compile-single" depends="init,deps-jar,pre-pre-compile"> |
| <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> |
| <j2seproject:javac xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"> |
| <customize> |
| <include name="${javac.includes}"/> |
| </customize> |
| </j2seproject:javac> |
| </target> |
| <target name="post-compile-single"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="compile-single" depends="init,deps-jar,pre-pre-compile,pre-compile-single,do-compile-single,post-compile-single"/> |
| <!-- |
| ==================== |
| JAR BUILDING SECTION |
| ==================== |
| --> |
| <target name="pre-jar"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="do-jar" depends="init,compile,pre-jar"> |
| <dirname property="dist.jar.dir" file="${dist.jar}"/> |
| <mkdir dir="${dist.jar.dir}"/> |
| <jar jarfile="${dist.jar}" compress="${jar.compress}"> |
| <fileset dir="${build.classes.dir}"/> |
| </jar> |
| </target> |
| <target name="post-jar"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="jar" depends="init,compile,pre-jar,do-jar,post-jar" description="Build JAR."/> |
| <!-- |
| ================= |
| EXECUTION SECTION |
| ================= |
| --> |
| <target name="run" depends="init,compile" description="Run a main class."> |
| <j2seproject:java xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"> |
| <customize> |
| <arg line="${application.args}"/> |
| </customize> |
| </j2seproject:java> |
| </target> |
| <target name="run-single" depends="init,compile-single"> |
| <fail unless="run.class">Must select one file in the IDE or set run.class</fail> |
| <j2seproject:java classname="${run.class}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <!-- |
| ================= |
| DEBUGGING SECTION |
| ================= |
| --> |
| <target name="debug-start-debugger" if="netbeans.home" depends="init"> |
| <j2seproject:nbjpdastart xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug-start-debuggee" depends="init,compile"> |
| <j2seproject:debug xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug" if="netbeans.home" depends="init,compile,debug-start-debugger,debug-start-debuggee" description="Debug project in IDE."/> |
| <target name="debug-start-debugger-stepinto" if="netbeans.home" depends="init"> |
| <j2seproject:nbjpdastart stopclassname="${main.class}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug-stepinto" if="netbeans.home" depends="init,compile,debug-start-debugger-stepinto,debug-start-debuggee"/> |
| <target name="debug-start-debuggee-single" if="netbeans.home" depends="init,compile-single"> |
| <fail unless="debug.class">Must select one file in the IDE or set debug.class</fail> |
| <j2seproject:debug classname="${debug.class}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug-single" if="netbeans.home" depends="init,compile-single,debug-start-debugger,debug-start-debuggee-single"/> |
| <target name="pre-debug-fix" depends="init"> |
| <fail unless="fix.includes">Must set fix.includes</fail> |
| <property name="javac.includes" value="${fix.includes}.java"/> |
| </target> |
| <target name="do-debug-fix" if="netbeans.home" depends="init,pre-debug-fix,compile-single"> |
| <j2seproject:nbjpdareload xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug-fix" if="netbeans.home" depends="init,pre-debug-fix,do-debug-fix"/> |
| <!-- |
| =============== |
| JAVADOC SECTION |
| =============== |
| --> |
| <target name="javadoc-build" depends="init"> |
| <mkdir dir="${dist.javadoc.dir}"/> |
| <javadoc destdir="${dist.javadoc.dir}" source="${javac.source}" notree="${javadoc.notree}" use="${javadoc.use}" nonavbar="${javadoc.nonavbar}" noindex="${javadoc.noindex}" splitindex="${javadoc.splitindex}" author="${javadoc.author}" version="${javadoc.version}" windowtitle="${javadoc.windowtitle}" private="${javadoc.private}"> |
| <classpath> |
| <path path="${javac.classpath}"/> |
| </classpath> |
| <sourcepath> |
| <pathelement location="${src.dir}"/> |
| </sourcepath> |
| <fileset dir="${src.dir}"/> |
| </javadoc> |
| </target> |
| <target name="javadoc-browse" if="netbeans.home" unless="no.javadoc.preview" depends="init,javadoc-build"> |
| <nbbrowse file="${dist.javadoc.dir}/index.html"/> |
| </target> |
| <target name="javadoc" depends="init,javadoc-build,javadoc-browse" description="Build Javadoc."/> |
| <!-- |
| ========================= |
| JUNIT COMPILATION SECTION |
| ========================= |
| --> |
| <target name="pre-pre-compile-test" if="have.tests" depends="init,compile"> |
| <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 name="do-compile-test" if="have.tests" depends="init,compile,pre-pre-compile-test,pre-compile-test"> |
| <j2seproject:javac srcdir="${test.src.dir}" destdir="${build.test.classes.dir}" debug="true" classpath="${javac.test.classpath}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| <copy todir="${build.test.classes.dir}"> |
| <fileset dir="${test.src.dir}"> |
| <exclude name="**/*.java"/> |
| </fileset> |
| </copy> |
| </target> |
| <target name="post-compile-test"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="compile-test" depends="init,compile,pre-pre-compile-test,pre-compile-test,do-compile-test,post-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 name="do-compile-test-single" if="have.tests" depends="init,compile,pre-pre-compile-test,pre-compile-test-single"> |
| <fail unless="javac.includes">Must select some files in the IDE or set javac.includes</fail> |
| <j2seproject:javac srcdir="${test.src.dir}" destdir="${build.test.classes.dir}" debug="true" classpath="${javac.test.classpath}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"> |
| <customize> |
| <include name="${javac.includes}"/> |
| </customize> |
| </j2seproject:javac> |
| </target> |
| <target name="post-compile-test-single"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="compile-test-single" depends="init,compile,pre-pre-compile-test,pre-compile-test-single,do-compile-test-single,post-compile-test-single"/> |
| <!-- |
| ======================= |
| JUNIT EXECUTION SECTION |
| ======================= |
| --> |
| <target name="pre-test-run" if="have.tests" depends="init"> |
| <mkdir dir="${build.test.results.dir}"/> |
| </target> |
| <target name="do-test-run" if="have.tests" depends="init,compile-test,pre-test-run"> |
| <j2seproject:junit xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="post-test-run" if="have.tests" depends="init,compile-test,pre-test-run,do-test-run"> |
| <fail if="tests.failed">Some tests failed; see details above.</fail> |
| </target> |
| <target name="test-report" if="have.tests" depends="init"/> |
| <target name="test-browse" if="netbeans.home+have.tests" depends="init"/> |
| <target name="test" depends="init,compile-test,pre-test-run,do-test-run,test-report,post-test-run,test-browse" description="Run unit tests."/> |
| <target name="pre-test-run-single" if="have.tests" depends="init"> |
| <mkdir dir="${build.test.results.dir}"/> |
| </target> |
| <target name="do-test-run-single" if="have.tests" depends="init,compile-test-single,pre-test-run-single"> |
| <fail unless="test.includes">Must select some files in the IDE or set test.includes</fail> |
| <j2seproject:junit includes="${test.includes}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="post-test-run-single" if="have.tests" depends="init,compile-test-single,pre-test-run-single,do-test-run-single"> |
| <fail if="tests.failed">Some tests failed; see details above.</fail> |
| </target> |
| <target name="test-single" depends="init,compile-test-single,pre-test-run-single,do-test-run-single,post-test-run-single" description="Run single unit test."/> |
| <!-- |
| ======================= |
| JUNIT DEBUGGING SECTION |
| ======================= |
| --> |
| <target name="debug-start-debuggee-test" if="have.tests" depends="init,compile-test"> |
| <fail unless="test.class">Must select one file in the IDE or set test.class</fail> |
| <j2seproject:debug classname="junit.textui.TestRunner" classpath="${debug.test.classpath}" args="${test.class}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug-start-debugger-test" if="netbeans.home+have.tests" depends="init,compile-test"> |
| <j2seproject:nbjpdastart name="${test.class}" classpath="${debug.test.classpath}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug-test" depends="init,compile-test,debug-start-debugger-test,debug-start-debuggee-test"/> |
| <target name="do-debug-fix-test" if="netbeans.home" depends="init,pre-debug-fix,compile-test-single"> |
| <j2seproject:nbjpdareload dir="${build.test.classes.dir}" xmlns:j2seproject="http://www.netbeans.org/ns/j2se-project/1"/> |
| </target> |
| <target name="debug-fix-test" if="netbeans.home" depends="init,pre-debug-fix,do-debug-fix-test"/> |
| <!-- |
| =============== |
| CLEANUP SECTION |
| =============== |
| --> |
| <target name="deps-clean" depends="init" unless="no.dependencies"/> |
| <target name="do-clean" depends="init"> |
| <delete dir="${build.dir}"/> |
| <delete dir="${dist.dir}"/> |
| </target> |
| <target name="post-clean"> |
| <!-- Empty placeholder for easier customization. --> |
| <!-- You can override this target in the ../build.xml file. --> |
| </target> |
| <target name="clean" depends="init,deps-clean,do-clean,post-clean" description="Clean build products."/> |
| </project> |