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