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