Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan D. Brooks2019-11-14 21:38:04 +0000
committerRyan D. Brooks2019-11-14 21:38:04 +0000
commitffdb90470b8667a3afe0be5ecc8c6012859fcfaf (patch)
treec156010982fa867de3ef13aaa844a75f94193364 /plugins/org.eclipse.osee.framework.core.dsl.ui.integration/META-INF/MANIFEST.MF
parentc8ec398b7b8ae2e8527c061b26c09c26f52c8992 (diff)
downloadorg.eclipse.osee-ffdb90470b8667a3afe0be5ecc8c6012859fcfaf.tar.gz
org.eclipse.osee-ffdb90470b8667a3afe0be5ecc8c6012859fcfaf.tar.xz
org.eclipse.osee-ffdb90470b8667a3afe0be5ecc8c6012859fcfaf.zip
refinement[TW15199]: Make OSGi bundles singleton with lazy activation
- The OSGi lazy activation policy is specified via the bundle header - Bundle-ActivationPolicy: lazy and allows launching with as few - bundles active as possible which improves scalability and startup - performance. When the bundle header Bundle-SymbolicName is - followed by singleton:=true only one version of the bundle is - loaded in the OSGi runtime (normally the highest version). This - is required for a plug-in providing an extension or an extension - point. Change-Id: I731b61fb8dacb2801d0c276c5960814646f9c18f
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.dsl.ui.integration/META-INF/MANIFEST.MF')
-rw-r--r--plugins/org.eclipse.osee.framework.core.dsl.ui.integration/META-INF/MANIFEST.MF2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/META-INF/MANIFEST.MF b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/META-INF/MANIFEST.MF
index 70175219568..0adbfd05c80 100644
--- a/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.osee.framework.core.dsl.ui.integration/META-INF/MANIFEST.MF
@@ -2,6 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: OSEE ORCS DSL UI Integration - (Incubation)
Bundle-SymbolicName: org.eclipse.osee.framework.core.dsl.ui.integration;singleton:=true
+Bundle-ActivationPolicy: lazy
Bundle-Version: 0.26.0.qualifier
Bundle-Vendor: Eclipse Open System Engineering Environment
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
@@ -59,7 +60,6 @@ Import-Package: javax.ws.rs.client,
org.osgi.framework,
org.osgi.util.tracker
Eclipse-ExtensibleAPI: true
-Bundle-ActivationPolicy: lazy
Require-Bundle: org.eclipse.osee.framework.core.dsl,
org.eclipse.emf.ecore,
org.eclipse.emf.common,

Back to the top