summaryrefslogtreecommitdiff
path: root/qpid/java/management/eclipse-plugin/build-release.xml
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2009-12-10 14:08:45 +0000
committerRobert Gemmell <robbie@apache.org>2009-12-10 14:08:45 +0000
commiteabca97cb1b2116665b61554d61fc6ca20a15c42 (patch)
treeddb0bf9c5f6f4d2e70f120c28e26b35bc5334e46 /qpid/java/management/eclipse-plugin/build-release.xml
parentf0ee36735e9cef54e6e6ecea583df77f2fbe81de (diff)
downloadqpid-python-eabca97cb1b2116665b61554d61fc6ca20a15c42.tar.gz
Update OSGI/Eclipse bundle versions and filenames for the 0.6 release
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@889271 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/management/eclipse-plugin/build-release.xml')
-rw-r--r--qpid/java/management/eclipse-plugin/build-release.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/qpid/java/management/eclipse-plugin/build-release.xml b/qpid/java/management/eclipse-plugin/build-release.xml
index f94f99d333..dec4cd5f32 100644
--- a/qpid/java/management/eclipse-plugin/build-release.xml
+++ b/qpid/java/management/eclipse-plugin/build-release.xml
@@ -18,7 +18,7 @@
- under the License.
-
-->
-<project name="Eclipse Plugin Binary Release" default="release-bin">
+<project name="JMX Management Console Binary Release" default="release-bin">
<!-- check properties that must be set by caller -->
<target name="check" description="ensure all required properties are set">
@@ -27,7 +27,6 @@
<!-- common properties -->
<isset property ="mcplugin.filename"/>
<isset property ="jmxremote.sasl.manifest"/>
- <isset property ="qpidmanagementcommon.manifest"/>
<!-- platform specific properties -->
<isset property ="qpidmc.ini"/>
<isset property ="qpidmc.executable"/>
@@ -59,6 +58,9 @@
</target>
<target name="release-bin-qpid-mc-plugin">
+ <available file="${build.lib}/qpid-management-eclipse-plugin-${project.version}.jar" property="management-eclipse-plugin.jar.present"/>
+ <fail unless="management-eclipse-plugin.jar.present" message="Please run ant build for the management-eclipse-plugin module"/>
+
<!-- Copy the qpid management-eclipse-plugin module jar -->
<copy tofile="${release.subdir}/plugins/${mcplugin.filename}.jar" flatten="true" failonerror="true">
<fileset file="${build.lib}/qpid-management-eclipse-plugin-${project.version}.jar"/>
@@ -73,9 +75,12 @@
</target>
<target name="release-bin-qpid-management-common-plugin">
+ <available file="${build.lib}/qpid-management-common_${project.version}.0.osgi.jar" property="management-common.jar.present"/>
+ <fail unless="management-common.jar.present" message="Please run ant bundle for the management-common module"/>
+
<!-- Copy the qpid-management-common module osgi jar -->
<copy todir="${release.subdir}/plugins" failonerror="true">
- <fileset file="${build.lib}/qpid-management-common_${project.version}.osgi.jar"/>
+ <fileset file="${build.lib}/qpid-management-common_${project.version}.0.osgi.jar"/>
</copy>
</target>