samples/gc/build.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:54:38 +0200
changeset 113 f2b6057a3376
child 280 e619b35c903e
permissions -rw-r--r--
Memory tests
jtulach@113
     1
<?xml version="1.0" encoding="UTF-8"?>
jtulach@113
     2
<!-- You may freely edit this file. See commented blocks below for -->
jtulach@113
     3
<!-- some examples of how to customize the build. -->
jtulach@113
     4
<!-- (If you delete it and reopen the project it will be recreated.) -->
jtulach@113
     5
<project name="gc" default="default" basedir=".">
jtulach@113
     6
    <description>Builds, tests, and runs the project gc.</description>
jtulach@113
     7
    <import file="nbproject/build-impl.xml"/>
jtulach@113
     8
    <!--
jtulach@113
     9
jtulach@113
    10
    There exist several targets which are by default empty and which can be 
jtulach@113
    11
    used for execution of your tasks. These targets are usually executed 
jtulach@113
    12
    before and after some main targets. They are: 
jtulach@113
    13
jtulach@113
    14
      -pre-init:                 called before initialization of project properties
jtulach@113
    15
      -post-init:                called after initialization of project properties
jtulach@113
    16
      -pre-compile:              called before javac compilation
jtulach@113
    17
      -post-compile:             called after javac compilation
jtulach@113
    18
      -pre-compile-single:       called before javac compilation of single file
jtulach@113
    19
      -post-compile-single:      called after javac compilation of single file
jtulach@113
    20
      -pre-compile-test:         called before javac compilation of JUnit tests
jtulach@113
    21
      -post-compile-test:        called after javac compilation of JUnit tests
jtulach@113
    22
      -pre-compile-test-single:  called before javac compilation of single JUnit test
jtulach@113
    23
      -post-compile-test-single: called after javac compilation of single JUunit test
jtulach@113
    24
      -pre-jar:                  called before JAR building
jtulach@113
    25
      -post-jar:                 called after JAR building
jtulach@113
    26
      -post-clean:               called after cleaning build products
jtulach@113
    27
jtulach@113
    28
    (Targets beginning with '-' are not intended to be called on their own.)
jtulach@113
    29
jtulach@113
    30
    Example of inserting an obfuscator after compilation could look like this:
jtulach@113
    31
jtulach@113
    32
        <target name="-post-compile">
jtulach@113
    33
            <obfuscate>
jtulach@113
    34
                <fileset dir="${build.classes.dir}"/>
jtulach@113
    35
            </obfuscate>
jtulach@113
    36
        </target>
jtulach@113
    37
jtulach@113
    38
    For list of available properties check the imported 
jtulach@113
    39
    nbproject/build-impl.xml file. 
jtulach@113
    40
jtulach@113
    41
jtulach@113
    42
    Another way to customize the build is by overriding existing main targets.
jtulach@113
    43
    The targets of interest are: 
jtulach@113
    44
jtulach@113
    45
      -init-macrodef-javac:     defines macro for javac compilation
jtulach@113
    46
      -init-macrodef-junit:     defines macro for junit execution
jtulach@113
    47
      -init-macrodef-debug:     defines macro for class debugging
jtulach@113
    48
      -init-macrodef-java:      defines macro for class execution
jtulach@113
    49
      -do-jar-with-manifest:    JAR building (if you are using a manifest)
jtulach@113
    50
      -do-jar-without-manifest: JAR building (if you are not using a manifest)
jtulach@113
    51
      run:                      execution of project 
jtulach@113
    52
      -javadoc-build:           Javadoc generation
jtulach@113
    53
      test-report:              JUnit report generation
jtulach@113
    54
jtulach@113
    55
    An example of overriding the target for project execution could look like this:
jtulach@113
    56
jtulach@113
    57
        <target name="run" depends="gc-impl.jar">
jtulach@113
    58
            <exec dir="bin" executable="launcher.exe">
jtulach@113
    59
                <arg file="${dist.jar}"/>
jtulach@113
    60
            </exec>
jtulach@113
    61
        </target>
jtulach@113
    62
jtulach@113
    63
    Notice that the overridden target depends on the jar target and not only on 
jtulach@113
    64
    the compile target as the regular run target does. Again, for a list of available 
jtulach@113
    65
    properties which you can use, check the target you are overriding in the
jtulach@113
    66
    nbproject/build-impl.xml file. 
jtulach@113
    67
jtulach@113
    68
    -->
jtulach@113
    69
</project>