java/reflexe/build.xml
author František Kučera <franta-hg@frantovo.cz>
Sun, 11 Jun 2017 03:05:27 +0200
changeset 49 e1e5db678ce8
parent 27 165fb7ff9855
permissions -rw-r--r--
lpt-signal-generator: calibration
franta-hg@27
     1
<?xml version="1.0" encoding="UTF-8"?>
franta-hg@27
     2
<!-- You may freely edit this file. See commented blocks below for -->
franta-hg@27
     3
<!-- some examples of how to customize the build. -->
franta-hg@27
     4
<!-- (If you delete it and reopen the project it will be recreated.) -->
franta-hg@27
     5
<!-- By default, only the Clean and Build commands use this build script. -->
franta-hg@27
     6
<!-- Commands such as Run, Debug, and Test only use this build script if -->
franta-hg@27
     7
<!-- the Compile on Save feature is turned off for the project. -->
franta-hg@27
     8
<!-- You can turn off the Compile on Save (or Deploy on Save) setting -->
franta-hg@27
     9
<!-- in the project's Project Properties dialog box.-->
franta-hg@27
    10
<project name="reflexe" default="default" basedir=".">
franta-hg@27
    11
    <description>Builds, tests, and runs the project reflexe.</description>
franta-hg@27
    12
    <import file="nbproject/build-impl.xml"/>
franta-hg@27
    13
    <!--
franta-hg@27
    14
franta-hg@27
    15
    There exist several targets which are by default empty and which can be 
franta-hg@27
    16
    used for execution of your tasks. These targets are usually executed 
franta-hg@27
    17
    before and after some main targets. They are: 
franta-hg@27
    18
franta-hg@27
    19
      -pre-init:                 called before initialization of project properties
franta-hg@27
    20
      -post-init:                called after initialization of project properties
franta-hg@27
    21
      -pre-compile:              called before javac compilation
franta-hg@27
    22
      -post-compile:             called after javac compilation
franta-hg@27
    23
      -pre-compile-single:       called before javac compilation of single file
franta-hg@27
    24
      -post-compile-single:      called after javac compilation of single file
franta-hg@27
    25
      -pre-compile-test:         called before javac compilation of JUnit tests
franta-hg@27
    26
      -post-compile-test:        called after javac compilation of JUnit tests
franta-hg@27
    27
      -pre-compile-test-single:  called before javac compilation of single JUnit test
franta-hg@27
    28
      -post-compile-test-single: called after javac compilation of single JUunit test
franta-hg@27
    29
      -pre-jar:                  called before JAR building
franta-hg@27
    30
      -post-jar:                 called after JAR building
franta-hg@27
    31
      -post-clean:               called after cleaning build products
franta-hg@27
    32
franta-hg@27
    33
    (Targets beginning with '-' are not intended to be called on their own.)
franta-hg@27
    34
franta-hg@27
    35
    Example of inserting an obfuscator after compilation could look like this:
franta-hg@27
    36
franta-hg@27
    37
        <target name="-post-compile">
franta-hg@27
    38
            <obfuscate>
franta-hg@27
    39
                <fileset dir="${build.classes.dir}"/>
franta-hg@27
    40
            </obfuscate>
franta-hg@27
    41
        </target>
franta-hg@27
    42
franta-hg@27
    43
    For list of available properties check the imported 
franta-hg@27
    44
    nbproject/build-impl.xml file. 
franta-hg@27
    45
franta-hg@27
    46
franta-hg@27
    47
    Another way to customize the build is by overriding existing main targets.
franta-hg@27
    48
    The targets of interest are: 
franta-hg@27
    49
franta-hg@27
    50
      -init-macrodef-javac:     defines macro for javac compilation
franta-hg@27
    51
      -init-macrodef-junit:     defines macro for junit execution
franta-hg@27
    52
      -init-macrodef-debug:     defines macro for class debugging
franta-hg@27
    53
      -init-macrodef-java:      defines macro for class execution
franta-hg@27
    54
      -do-jar:                  JAR building
franta-hg@27
    55
      run:                      execution of project 
franta-hg@27
    56
      -javadoc-build:           Javadoc generation
franta-hg@27
    57
      test-report:              JUnit report generation
franta-hg@27
    58
franta-hg@27
    59
    An example of overriding the target for project execution could look like this:
franta-hg@27
    60
franta-hg@27
    61
        <target name="run" depends="reflexe-impl.jar">
franta-hg@27
    62
            <exec dir="bin" executable="launcher.exe">
franta-hg@27
    63
                <arg file="${dist.jar}"/>
franta-hg@27
    64
            </exec>
franta-hg@27
    65
        </target>
franta-hg@27
    66
franta-hg@27
    67
    Notice that the overridden target depends on the jar target and not only on 
franta-hg@27
    68
    the compile target as the regular run target does. Again, for a list of available 
franta-hg@27
    69
    properties which you can use, check the target you are overriding in the
franta-hg@27
    70
    nbproject/build-impl.xml file. 
franta-hg@27
    71
franta-hg@27
    72
    -->
franta-hg@27
    73
</project>