~ubuntu-branches/ubuntu/quantal/netbeans/quantal

« back to all changes in this revision

Viewing changes to ide/projectopener/build.xml

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

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