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 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
<?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.
-->
<!-- 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>
|