diff options
| author | Robert Gemmell <robbie@apache.org> | 2009-12-10 14:08:45 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2009-12-10 14:08:45 +0000 |
| commit | 1de217b96481937bfdff19fb4ced708330faaf3d (patch) | |
| tree | 584eb08ee4fee129525ed0cb7f6b3e367600529f /java/management/eclipse-plugin/build-release.xml | |
| parent | cf49a7de7c92fb2de85048dc7c8a8e09a6a5c3db (diff) | |
| download | qpid-python-1de217b96481937bfdff19fb4ced708330faaf3d.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/qpid@889271 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/management/eclipse-plugin/build-release.xml')
| -rw-r--r-- | java/management/eclipse-plugin/build-release.xml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/java/management/eclipse-plugin/build-release.xml b/java/management/eclipse-plugin/build-release.xml index f94f99d333..dec4cd5f32 100644 --- a/java/management/eclipse-plugin/build-release.xml +++ b/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> |
