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

« back to all changes in this revision

Viewing changes to usersguide/tutorials/j2ee-tut/examples/ejb/cmproster/Roster/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 name="" default="default" basedir="." xmlns:ejbjarproject="http://www.netbeans.org/ns/j2ee-ejbjarproject/2">
 
6
    <description>Builds, tests, and runs the project .</description>
 
7
    <import file="nbproject/build-impl.xml"/>
 
8
    <!--
 
9
 
 
10
    There exist several targets which are by default empty and which can be 
 
11
    used for execution of your tasks. These targets are usually executed 
 
12
    before and after some main targets. They are: 
 
13
 
 
14
      pre-init:                 called before initialization of project properties 
 
15
      post-init:                called after initialization of project properties 
 
16
      pre-compile:              called before javac compilation 
 
17
      post-compile:             called after javac compilation 
 
18
      pre-compile-single:       called before javac compilation of single file
 
19
      post-compile-single:      called after javac compilation of single file
 
20
      pre-dist:                 called before jar building 
 
21
      post-dist:                called after jar building 
 
22
      post-clean:               called after cleaning build products 
 
23
 
 
24
    Example of pluging an obfuscator after the compilation could look like 
 
25
 
 
26
        <target name="post-compile">
 
27
            <obfuscate>
 
28
                <fileset dir="${build.classes.dir}"/>
 
29
            </obfuscate>
 
30
        </target>
 
31
 
 
32
    For list of available properties check the imported 
 
33
    nbproject/build-impl.xml file. 
 
34
 
 
35
 
 
36
    Other way how to customize the build is by overriding existing main targets.
 
37
    The target of interest are: 
 
38
 
 
39
      init-macrodef-javac:    defines macro for javac compilation
 
40
      init-macrodef-debug:    defines macro for class debugging
 
41
      do-dist:                jar archive building
 
42
      run:                    execution of project 
 
43
      javadoc-build:          javadoc generation 
 
44
 
 
45
    Example of overriding the target for project execution could look like 
 
46
 
 
47
        <target name="run" depends="<PROJNAME>-impl.jar">
 
48
            <exec dir="bin" executable="launcher.exe">
 
49
                <arg file="${dist.jar}"/>
 
50
            </exec>
 
51
        </target>
 
52
 
 
53
    Notice that overridden target depends on jar target and not only on 
 
54
    compile target as regular run target does. Again, for list of available 
 
55
    properties which you can use check the target you are overriding in 
 
56
    nbproject/build-impl.xml file. 
 
57
 
 
58
    -->
 
59
</project>