mirror of https://github.com/apache/activemq.git
Tweaking the activemq osgi jar so that it does not re-bundle the leveldbjni lib since the pure java version works fine.
This commit is contained in:
parent
25f70ad483
commit
26092f5a82
|
@ -50,9 +50,11 @@
|
|||
org.bouncycastle*;resolution:=optional,
|
||||
org.codehaus.jackson*;resolution:=optional,
|
||||
org.codehaus.jettison*;resolution:=optional,
|
||||
org.linkedin*;resolution:=optional,
|
||||
org.jasypt*;resolution:=optional,
|
||||
org.eclipse.jetty*;resolution:=optional,
|
||||
org.apache.zookeeper;resolution:=optional,
|
||||
org.apache.zookeeper*;resolution:=optional,
|
||||
org.fusesource.leveldbjni*;resolution:=optional,
|
||||
org.linkedin*;resolution:=optional,
|
||||
org.springframework.jms*;version="[3,4]";resolution:=optional,
|
||||
org.springframework.osgi*;version="[1.2,1.3]";resolution:=optional,
|
||||
|
@ -77,7 +79,9 @@
|
|||
org.apache.activemq.web*;version=${project.version};-noimport:=true;-split-package:=merge-first,
|
||||
</activemq.osgi.export>
|
||||
<activemq.osgi.private.pkg>
|
||||
org.fusesource*,
|
||||
org.fusesource.hawtdispatch*,
|
||||
org.fusesource.mqtt*,
|
||||
org.fusesource.hawtbuf*,
|
||||
org.apache.qpid*,
|
||||
com.google.common*,
|
||||
org.iq80*
|
||||
|
@ -125,6 +129,10 @@
|
|||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>activemq-http</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>activemq-partition</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- Additional Dependencies. -->
|
||||
<dependency>
|
||||
|
@ -267,6 +275,7 @@
|
|||
<configuration>
|
||||
<instructions>
|
||||
<Bundle-Activator>org.apache.activemq.util.osgi.Activator</Bundle-Activator>
|
||||
<!--
|
||||
<Embed-Dependency>
|
||||
*;
|
||||
groupId=org.apache.activemq;inline=META-INF/services/*,
|
||||
|
@ -287,6 +296,7 @@
|
|||
org/xerial/snappy/native/Linux/arm/libsnappyjava.so;osname=linux;processor=arm,
|
||||
*
|
||||
</Bundle-NativeCode>
|
||||
-->
|
||||
</instructions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
|
Loading…
Reference in New Issue