Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2012-05-04 11:47:32 +0000
committerIgor Fedorenko2012-05-04 11:50:07 +0000
commit0ef7bd2e757bcb5bbe44fcce79698760eb6a4330 (patch)
treeb4ec2bbfcc14d2ea9fc0dd6850583c6315ec05cf
parent0392788a85a008af939fed07882bec73f97ee2c2 (diff)
downloadm2e-core-0ef7bd2e757bcb5bbe44fcce79698760eb6a4330.tar.gz
m2e-core-0ef7bd2e757bcb5bbe44fcce79698760eb6a4330.tar.xz
m2e-core-0ef7bd2e757bcb5bbe44fcce79698760eb6a4330.zip
376124 made m2e maven runtime bundles non-singletons
There is no reason to block other versions of m2e runtime bundles to be installed and activated, these bundles are stateless and OSGi framework will link m2e to one compatible version regrdaless. Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
-rw-r--r--m2e-maven-runtime/pom.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/m2e-maven-runtime/pom.xml b/m2e-maven-runtime/pom.xml
index 80c1053a..2307e56d 100644
--- a/m2e-maven-runtime/pom.xml
+++ b/m2e-maven-runtime/pom.xml
@@ -70,7 +70,7 @@
<_nodefaultversion>true</_nodefaultversion>
<_snapshot>${osgi-version-qualifier}</_snapshot>
- <Bundle-SymbolicName>${project.artifactId};singleton:=true</Bundle-SymbolicName>
+ <Bundle-SymbolicName>${project.artifactId};singleton:=false</Bundle-SymbolicName>
<Bundle-RequiredExecutionEnvironment>J2SE-1.5,JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
<Bundle-Name>%Bundle-Name</Bundle-Name>
<Bundle-Vendor>%Bundle-Vendor</Bundle-Vendor>

Back to the top