diff options
author | Martin Ritchie <ritchiem@apache.org> | 2008-12-03 12:25:06 +0000 |
---|---|---|
committer | Martin Ritchie <ritchiem@apache.org> | 2008-12-03 12:25:06 +0000 |
commit | 4000eab51dd3e82dd1138d1471699baa103c154f (patch) | |
tree | d634e29bdb2b7ae2ac02cd72cd2e1a9239c908c7 | |
parent | 435251360a7dfe116aedf94df7f4b9aa4a5b60cc (diff) | |
download | qpid-python-4000eab51dd3e82dd1138d1471699baa103c154f.tar.gz |
QPID-1481 : Patch provided by Robert Gemmell, export jmxrmote.sasl plugin as optional so the built consoles can start without it present
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@722862 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/java/management/eclipse-plugin/META-INF/MANIFEST.MF | 11 | ||||
-rw-r--r-- | qpid/java/management/eclipse-plugin/src/main/resources/sasl/MANIFEST.MF | 13 |
2 files changed, 21 insertions, 3 deletions
diff --git a/qpid/java/management/eclipse-plugin/META-INF/MANIFEST.MF b/qpid/java/management/eclipse-plugin/META-INF/MANIFEST.MF index a03c35c457..ff4176d482 100644 --- a/qpid/java/management/eclipse-plugin/META-INF/MANIFEST.MF +++ b/qpid/java/management/eclipse-plugin/META-INF/MANIFEST.MF @@ -4,10 +4,17 @@ Bundle-Name: Qpid Management Console Plug-in Bundle-SymbolicName: org.apache.qpid.management.ui; singleton:=true Bundle-Version: 0.1.0 Bundle-Activator: org.apache.qpid.management.ui.Activator +Bundle-Vendor: Apache Software Foundation Bundle-Localization: plugin Require-Bundle: org.eclipse.ui, org.eclipse.core.runtime, org.eclipse.ui.forms, - jmxremote.sasl + jmxremote.sasl;resolution:=optional Eclipse-LazyStart: true -Bundle-Vendor: Apache Software Foundation +Export-Package: org.apache.qpid.management.ui, + org.apache.qpid.management.ui.actions, + org.apache.qpid.management.ui.exceptions, + org.apache.qpid.management.ui.jmx, + org.apache.qpid.management.ui.model, + org.apache.qpid.management.ui.sasl, + org.apache.qpid.management.ui.views diff --git a/qpid/java/management/eclipse-plugin/src/main/resources/sasl/MANIFEST.MF b/qpid/java/management/eclipse-plugin/src/main/resources/sasl/MANIFEST.MF index d18b1a073d..fa11bac2ea 100644 --- a/qpid/java/management/eclipse-plugin/src/main/resources/sasl/MANIFEST.MF +++ b/qpid/java/management/eclipse-plugin/src/main/resources/sasl/MANIFEST.MF @@ -3,6 +3,17 @@ Bundle-ManifestVersion: 2 Bundle-Name: jmx sasl Plug-in Bundle-SymbolicName: jmxremote.sasl Bundle-Version: 1.0.1 -Bundle-ClassPath: . +Bundle-ClassPath: jmxremote_optional.jar +Export-Package: com.sun.jmx.remote.generic, + com.sun.jmx.remote.opt.internal, + com.sun.jmx.remote.opt.security, + com.sun.jmx.remote.opt.util, + com.sun.jmx.remote.profile.sasl, + com.sun.jmx.remote.profile.tls, + com.sun.jmx.remote.protocol.jmxmp, + com.sun.jmx.remote.socket, + javax.management.remote.generic, + javax.management.remote.jmxmp, + javax.management.remote.message Bundle-Vendor: Bundle-Localization: plugin |