You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OSGi containers running on Java 1.6 or above should provide this capability. Unfortunately, some OSGi containers don't do this correctly and will reject the bundle JAR in the OSGi subsystem context.
151
+
152
+
As a workaround, you can build your own version of the JAR that omits the "osgi.ee" capability by running:
153
+
154
+
```
155
+
mvn clean
156
+
mvn package -Dosgi.bnd.noee=true
157
+
```
158
+
159
+
(This is equivalent to passing the "-noee" option to the OSGi "bnd" tool.)
160
+
161
+
Another workaround is to tell your OSGi container to provide that requirement: [StackOverflow answer](http://stackoverflow.com/a/24673359/163832).
0 commit comments