summaryrefslogtreecommitdiff
path: root/java/management/eclipse-plugin/build.xml
blob: ae102d1e7292e11726bbc24455be4bed2f8f5a87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?xml version="1.0" encoding="UTF-8"?>
<project name="org.apache.qpid.management.ui" default="build.update.jar" basedir=".">

    <property name="basews" value="${ws}"/>
    <property name="baseos" value="${os}"/>
    <property name="basearch" value="${arch}"/>
    <property name="basenl" value="${nl}"/>

    <!-- Compiler settings. -->
    <property name="javacFailOnError" value="false"/>
    <property name="javacDebugInfo" value="on"/>
    <property name="javacVerbose" value="false"/>
    <property name="logExtension" value=".log"/>
    <property name="compilerArg" value=""/>
    <property name="javacSource" value="1.5"/>
    <property name="javacTarget" value="1.5"/>
    <path id="path_bootclasspath">
        <fileset dir="${java.home}/lib">
            <include name="*.jar"/>
        </fileset>
    </path>
    <property name="bootclasspath" refid="path_bootclasspath"/>
    <property name="bundleJavacSource" value="${javacSource}"/>
    <property name="bundleJavacTarget" value="${javacTarget}"/>
    <property name="bundleBootClasspath" value="${bootclasspath}"/>
    <property name="pluginName" value="org.apache.qpid.management.ui"/>
    <property name="version" value="0.1.0"/>

    <target name="init" depends="properties">
        <condition property="pluginTemp" value="${buildTempFolder}/plugins">
            <isset property="buildTempFolder"/>
        </condition>
        <property name="pluginTemp" value="${basedir}"/>
        <condition property="build.result.folder" value="${pluginTemp}/eclipse-plugin">
            <isset property="buildTempFolder"/>
        </condition>
        <property name="build.result.folder" value="${basedir}"/>
        <property name="temp.folder" value="${basedir}/temp.folder"/>
        <property name="plugin.destination" value="${basedir}"/>
        <property name="target.folder" value="${basedir}/target"/>
        <property name="compile.folder" value="${target.folder}/classes"/>
        <property name="plugins.folder" value="${basedir}/plugins"/>
    </target>

    <target name="properties" if="eclipse.running">
        <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>

    </target>

    <target name="build.update.jar" depends="init" description="Build the plug-in: org.apache.qpid.management.ui for an update site.">
        <delete dir="${temp.folder}"/>
        <mkdir dir="${temp.folder}"/>
        <antcall target="build.jars"/>
        <antcall target="gather.bin.parts">
            <param name="destination.temp.folder" value="${temp.folder}/"/>
        </antcall>
        <zip destfile="${plugins.folder}/${pluginName}_${version}.jar" basedir="${temp.folder}/${pluginName}" filesonly="false" whenempty="skip" update="false"/>
        <delete dir="${temp.folder}"/>
    </target>

    <target name="compile" depends="init" unless="compile" description="Create jar: org.apache.qpid.management.ui compile.">
        <delete dir="${temp.folder}/compile.bin"/>
        <mkdir dir="${temp.folder}/compile.bin"/>
        <path id="compile.classpath">
            <pathelement path="plugins/org.eclipse.ui_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.core.runtime_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.osgi_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.equinox.common_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.core.jobs_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.core.runtime.compatibility.registry_3.2.0/runtime_registry_compatibility.jar"/>
            <pathelement path="plugins/org.eclipse.equinox.registry_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.equinox.preferences_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.core.contenttype_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.core.runtime.compatibility.auth_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.swt_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.swt.win32.win32.x86_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.jface_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.core.commands_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.ui.workbench_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.ui.workbench.compatibility_3.2.0/compatibility.jar"/>
            <pathelement path="plugins/com.ibm.icu_3.4.4.1.jar"/>
            <pathelement path="plugins/org.eclipse.help_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.core.expressions_3.2.0.jar"/>
            <pathelement path="plugins/org.eclipse.ui.forms_3.2.0.jar"/>
        </path>
        <!-- compile the source code -->
        <javac destdir="${temp.folder}/compile.bin" failonerror="${javacFailOnError}" verbose="${javacVerbose}" debug="${javacDebugInfo}" includeAntRuntime="no" bootclasspath="${bundleBootClasspath}" source="${bundleJavacSource}" target="${bundleJavacTarget}"     >
            <compilerarg line="${compilerArg}" compiler="${build.compiler}"/>
            <classpath refid="compile.classpath" />
            <src path="src/main/java/"          />
            <!--compilerarg value="@${basedir}/javaCompiler...args" compiler="org.eclipse.jdt.core.JDTCompilerAdapter" -->
            <compilerarg line="-log '${temp.folder}/compile.bin${logExtension}'" compiler="org.eclipse.jdt.core.JDTCompilerAdapter"/>
        </javac>
        <!-- Copy necessary resources -->
        <copy todir="${temp.folder}/compile.bin" failonerror="true" overwrite="false">
            <fileset dir="src/main/java/" excludes="**/*.java, **/package.htm*"         />
        </copy>
        <mkdir dir="${build.result.folder}"/>
        <copy todir="${target.folder}/classes" failonerror="true" overwrite="false">
            <fileset dir="${temp.folder}/compile.bin"           />
        </copy>
        <delete dir="${temp.folder}/compile.bin"/>
    </target>

    <target name="src.zip" depends="init" unless="src.zip">
        <mkdir dir="${build.result.folder}"/>
        <zip destfile="${build.result.folder}/src.zip" filesonly="false" whenempty="skip" update="false">
            <fileset dir="src/main/java/" includes="**/*.java"          />
        </zip>
    </target>

    <target name="build.jars" depends="init" description="Build all the jars for the plug-in: org.apache.qpid.management.ui.">
        <available property="compile" file="${target.folder}/classes"/>
        <antcall target="compile"/>
    </target>

    <target name="build.sources" depends="init">
        <available property="src.zip" file="${build.result.folder}/src.zip"/>
        <antcall target="src.zip"/>
    </target>

    <target name="gather.bin.parts" depends="init" if="destination.temp.folder">
        <mkdir dir="${destination.temp.folder}/${pluginName}"/>
        <copy todir="${destination.temp.folder}/${pluginName}" failonerror="true" overwrite="false">
            <fileset dir="${target.folder}/classes" includes="**"/>
        </copy>
        <copy todir="${destination.temp.folder}/${pluginName}" failonerror="true" overwrite="false">
            <fileset dir="${basedir}" includes="plugin.xml,META-INF/,icons/,plugin.properties,splash.bmp"/>
        </copy>
    </target>

    <target name="gather.sources" depends="init" if="destination.temp.folder">
        <mkdir dir="${destination.temp.folder}"/>
        <copy file="${build.result.folder}/src.zip" todir="${destination.temp.folder}" failonerror="false" overwrite="false"/>
    </target>

    <target name="gather.logs" depends="init" if="destination.temp.folder">
        <mkdir dir="${destination.temp.folder}/${pluginName}_${version}"/>
        <copy file="${temp.folder}/compile.bin${logExtension}" todir="${destination.temp.folder}/${pluginName}_${version}" failonerror="false" overwrite="false"/>
    </target>

    <target name="clean" depends="init" description="Clean the plug-in: org.apache.qpid.management.ui of all the zips, jars and logs created.">
        <delete dir="${target.folder}/classes"/>
        <delete file="${build.result.folder}/src.zip"/>
        <delete file="${plugins.folder}/${pluginName}_${version}.jar"/>
        <delete file="${target.folder}/${pluginName}_${version}.zip"/>
        <delete dir="${temp.folder}"/>
    </target>

    <target name="build.zip" depends="init" description="Create a zip containing all the elements for the plug-in: org.apache.qpid.management.ui.">
        <delete dir="${temp.folder}"/>
        <mkdir dir="${temp.folder}"/>
        <antcall target="build.update.jar"/>
        <antcall target="build.sources"/>
        <antcall target="gather.sources">
            <param name="destination.temp.folder" value="${temp.folder}/plugins/${pluginName}_${version}/"/>
        </antcall>
        <delete>
            <fileset dir="${temp.folder}" includes="**/*.bin${logExtension}"/>
        </delete>
        <copy todir="${temp.folder}/plugins" failonerror="true" overwrite="false">
            <fileset dir="${plugins.folder}" includes="${pluginName}_${version}.jar"/>
        </copy>
        <zip destfile="${target.folder}/${pluginName}_${version}.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
        <delete dir="${temp.folder}"/>
    </target>
    
    <target name="dist" depends="init" description="Create a zip containing all the elements for deploying the plug-in: org.apache.qpid.management.ui.">
        <antcall target="clean"/>
        <antcall target="build.update.jar"/>
        <antcall target="build.sources"/>
        <antcall target="gather.sources">
            <param name="destination.temp.folder" value="${temp.folder}/${pluginName}"/>
        </antcall>
            <copy todir="${temp.folder}/${pluginName}/plugins" failonerror="true" overwrite="false">
                <fileset dir="${plugins.folder}" includes="**"  />
            </copy>
         <copy todir="${temp.folder}/${pluginName}/bin" failonerror="true" overwrite="false">
                <fileset dir="${basedir}/bin" includes="**" />
        </copy>
            <copy todir="${temp.folder}/${pluginName}" failonerror="true" overwrite="false">
                <fileset dir="${basedir}" includes="startup.jar,plugin.xml,META-INF/,icons/,plugin.properties,splash.bmp"/>
            </copy>
            <copy todir="${temp.folder}/${pluginName}/configuration" failonerror="true" overwrite="false">
                <fileset dir="${basedir}/configuration" includes="**"/>
            </copy>
        
            <delete>
                <fileset dir="${temp.folder}" includes="**/*.bin${logExtension}"/>
            </delete>
            <zip destfile="${target.folder}/${pluginName}_${version}.zip" basedir="${temp.folder}" filesonly="true" whenempty="skip" update="false"/>
            <delete dir="${temp.folder}"/>
        </target>

</project>