1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
<?xml version="1.0" encoding="UTF-8"?>
<!-- You may freely edit this file. See commented blocks below for -->
<!-- some examples of how to customize the build. -->
<!-- (If you delete it and reopen the project it will be recreated.) -->
<project name="PerformanceTestData" default="default" basedir=".">
<description>Builds, tests, and runs the project PerformanceTestData.</description>
<import file="nbproject/build-impl.xml"/>
<import file="nbproject/profiler-build-impl.xml"/>
<import file="nbproject/profiler-build-impl.xml"/>
<import file="nbproject/profiler-build-impl.xml"/>
<target name="pre-init">
<echo message="called before initialization of project properties"/>
</target>
<target name="post-init">
<echo message="called after initialization of project properties"/>
</target>
<target name="pre-compile">
<echo message="called before javac compilation"/>
</target>
<target name="post-compile">
<echo message="called after javac compilation"/>
</target>
<target name="pre-compile-single">
<echo message="called before javac compilation of single file"/>
</target>
<target name="post-compile-single">
<echo message="called after javac compilation of single file"/>
</target>
<target name="pre-compile-test">
<echo message="called before javac compilation of JUnit tests"/>
</target>
<target name="post-compile-test">
<echo message="called after javac compilation of JUnit tests"/>
</target>
<target name="pre-compile-test-single">
<echo message="called before javac compilation of single JUnit test"/>
</target>
<target name="post-compile-test-single">
<echo message="called after javac compilation of single JUunit test"/>
</target>
<target name="pre-jar">
<echo message="called before jar building "/>
</target>
<target name="post-jar">
<echo message="called after jar building "/>
</target>
<target name="post-clean">
<echo message="called after cleaning build products "/>
</target>
<target name="init-macrodef-javac">
<echo message="defines macro for javac compilation"/>
</target>
<target name="init-macrodef-junit">
<echo message="defines macro for junit execution"/>
</target>
<target name="init-macrodef-debug">
<echo message="defines macro for class debugging"/>
</target>
<target name="init-macrodef-java">
<echo message="defines macro for class execution"/>
</target>
<target name="do-jar">
<echo message="jar archive building"/>
</target>
<target name="run">
<echo message="execution of project "/>
</target>
<target name="javadoc-build">
<echo message="javadoc generation "/>
</target>
<target name="test-report">
<echo message="JUnit report generation"/>
</target>
</project>
|