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="funambol-groupdav-connector" default="default" basedir=".">
6 <description>Builds, tests, and runs the project funambol-groupdav-connector.</description>
7 <import file="nbproject/build-impl.xml"/>
8 <property file="build.properties"/>
11 There exist several targets which are by default empty and which can be
12 used for execution of your tasks. These targets are usually executed
13 before and after some main targets. They are:
15 -pre-init: called before initialization of project properties
16 -post-init: called after initialization of project properties
17 -pre-compile: called before javac compilation
18 -post-compile: called after javac compilation
19 -pre-compile-single: called before javac compilation of single file
20 -post-compile-single: called after javac compilation of single file
21 -pre-compile-test: called before javac compilation of JUnit tests
22 -post-compile-test: called after javac compilation of JUnit tests
23 -pre-compile-test-single: called before javac compilation of single JUnit test
24 -post-compile-test-single: called after javac compilation of single JUunit test
25 -pre-jar: called before JAR building
26 -post-jar: called after JAR building
27 -post-clean: called after cleaning build products
29 (Targets beginning with '-' are not intended to be called on their own.)
31 Example of inserting an obfuscator after compilation could look like this:
33 <target name="-post-compile">
35 <fileset dir="${build.classes.dir}"/>
39 For list of available properties check the imported
40 nbproject/build-impl.xml file.
43 Another way to customize the build is by overriding existing main targets.
44 The targets of interest are:
46 -init-macrodef-javac: defines macro for javac compilation
47 -init-macrodef-junit: defines macro for junit execution
48 -init-macrodef-debug: defines macro for class debugging
49 -init-macrodef-java: defines macro for class execution
50 -do-jar-with-manifest: JAR building (if you are using a manifest)
51 -do-jar-without-manifest: JAR building (if you are not using a manifest)
52 run: execution of project
53 -javadoc-build: Javadoc generation
54 test-report: JUnit report generation
56 An example of overriding the target for project execution could look like this:
58 <target name="run" depends="funambol-groupdav-connector-impl.jar">
59 <exec dir="bin" executable="launcher.exe">
60 <arg file="${dist.jar}"/>
64 Notice that the overridden target depends on the jar target and not only on
65 the compile target as the regular run target does. Again, for a list of available
66 properties which you can use, check the target you are overriding in the
67 nbproject/build-impl.xml file.
70 <target name="-pre-compile">
71 <!-- Check to see if JGroupDAV is with us, and copy if so-->
72 <available file="../JGroupDAV/dist/JGroupDAV.jar" property="jgroupdav.available"/>
73 <antcall target="-copy-jgroupdav"/>
74 <!-- Directory set up -->
76 file="build.properties"
77 comment="build props">
78 <entry key="groupdav.release.major" value="${groupdav.release.major}"/>
79 <entry key="groupdav.release.minor" value="${groupdav.release.minor}"/>
80 <entry key="groupdav.build.number" type="int" default="${groupdav.build.number}" operation="+" pattern="0000"/>
81 <entry key="groupdav.build.date" type="date" value="now"/>
83 <property file="build.properties"/>
84 <echo file="${src.src.dir}/net/bionicmessage/funambol/BVersion.java"
85 message="/* version file - autogenerated*/ package net.bionicmessage.funambol;" />
86 <echo file="${src.src.dir}/net/bionicmessage/funambol/BVersion.java"
87 message="public class BVersion {
88 public static final String version="${groupdav.release.major}.${groupdav.release.minor}.${groupdav.build.number}"
90 <echo file="${src.src.dir}/net/bionicmessage/funambol/BVersion.java"
91 message="+ " on ${groupdav.build.date} by ${user.name} ";" append="true"/>
92 <echo file="${src.src.dir}/net/bionicmessage/funambol/BVersion.java"
93 message="}" append="true"/>
95 <target name="-post-jar">
96 <property file="build/build.properties"/>
97 <property name="module.name" value="groupdav"/>
98 <property name="build.module" value="${build.dir}/${module.name}"/>
99 <property name="groupdav.version" value="${groupdav.release.major}.${groupdav.release.minor}"/>
101 Create the package directory structure
103 <mkdir dir="${build.module}/config"/>
104 <mkdir dir="${build.module}/sql"/>
105 <mkdir dir="${build.module}/lib"/>
108 <copy todir= "${build.module}/config" preservelastmodified="true">
109 <fileset dir="${src.src.dir}/config"/>
112 <copy todir = "${build.module}/sql" preservelastmodified="true">
113 <fileset dir="${src.src.dir}/sql"/>
116 <copy todir = "${build.module}/lib" preservelastmodified="true">
122 <jar jarfile = "${build.module}/lib/${module.name}-${groupdav.version}.jar"
126 <fileset dir="${build.classes.dir}">
127 <include name="**/*.class" />
134 <jar jarfile = "${dist.dir}/${module.name}-${groupdav.version}.s4j"
138 <fileset dir="${build.module}">
139 <include name="**/*" />
140 <exclude name=".svn"/>
145 <target name="-copy-jgroupdav" if="jgroupdav.available">
146 <echo message="Copying JGroupDAV"/>
147 <copy file="../JGroupDAV/dist/JGroupDAV.jar" todir="lib"/>