This closes #288
This commit is contained in:
commit
4f8aae0a40
|
@ -47,7 +47,4 @@ If you are trying to copy the examples somewhere else and modifying them. Consid
|
||||||
# if trying to modify the 'topic' example:
|
# if trying to modify the 'topic' example:
|
||||||
cd examples/jms/topic && mvn dependency:list
|
cd examples/jms/topic && mvn dependency:list
|
||||||
|
|
||||||
## Artemis on Apache Karaf
|
|
||||||
|
|
||||||
feature:repo-add mvn:org.apache.activemq/artemis-features/1.1.1-SNAPSHOT/xml
|
|
||||||
feature:install artemis-core artemis-hornetq artemis-stomp artemis-mqtt artemis-amqp
|
|
||||||
|
|
|
@ -19,6 +19,14 @@
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.3.0 http://karaf.apache.org/xmlns/features/v1.3.0">
|
xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.3.0 http://karaf.apache.org/xmlns/features/v1.3.0">
|
||||||
|
|
||||||
|
<feature name="artemis" version="${pom.version}">
|
||||||
|
<feature>artemis-core</feature>
|
||||||
|
<feature>artemis-amqp</feature>
|
||||||
|
<feature>artemis-stomp</feature>
|
||||||
|
<feature>artemis-mqtt</feature>
|
||||||
|
<feature>artemis-hornetq</feature>
|
||||||
|
</feature>
|
||||||
|
|
||||||
<feature name="netty-core" version="${netty.version}">
|
<feature name="netty-core" version="${netty.version}">
|
||||||
<bundle>mvn:io.netty/netty-common/${netty.version}</bundle>
|
<bundle>mvn:io.netty/netty-common/${netty.version}</bundle>
|
||||||
<bundle>mvn:io.netty/netty-transport/${netty.version}</bundle>
|
<bundle>mvn:io.netty/netty-transport/${netty.version}</bundle>
|
||||||
|
@ -45,7 +53,6 @@
|
||||||
|
|
||||||
<bundle>mvn:org.apache.activemq/artemis-native/${pom.version}</bundle>
|
<bundle>mvn:org.apache.activemq/artemis-native/${pom.version}</bundle>
|
||||||
<bundle>mvn:org.apache.activemq/artemis-server-osgi/${pom.version}</bundle>
|
<bundle>mvn:org.apache.activemq/artemis-server-osgi/${pom.version}</bundle>
|
||||||
|
|
||||||
</feature>
|
</feature>
|
||||||
|
|
||||||
<feature name="artemis-amqp" version="${pom.version}">
|
<feature name="artemis-amqp" version="${pom.version}">
|
||||||
|
@ -62,7 +69,6 @@
|
||||||
<bundle>mvn:org.apache.activemq/artemis-stomp-protocol/${pom.version}</bundle>
|
<bundle>mvn:org.apache.activemq/artemis-stomp-protocol/${pom.version}</bundle>
|
||||||
</feature>
|
</feature>
|
||||||
|
|
||||||
|
|
||||||
<feature name="artemis-mqtt" version="${pom.version}">
|
<feature name="artemis-mqtt" version="${pom.version}">
|
||||||
<feature>artemis-core</feature>
|
<feature>artemis-core</feature>
|
||||||
<bundle>mvn:org.apache.activemq/artemis-mqtt-protocol/${pom.version}</bundle>
|
<bundle>mvn:org.apache.activemq/artemis-mqtt-protocol/${pom.version}</bundle>
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
* [Logging](logging.md)
|
* [Logging](logging.md)
|
||||||
* [REST Interface](rest.md)
|
* [REST Interface](rest.md)
|
||||||
* [Embedding Apache ActiveMQ Artemis](embedding-activemq.md)
|
* [Embedding Apache ActiveMQ Artemis](embedding-activemq.md)
|
||||||
|
* [Apache Karaf](karaf.md)
|
||||||
* [Spring Integration](spring-integration.md)
|
* [Spring Integration](spring-integration.md)
|
||||||
* [AeroGear Integration](aerogear-integration.md)
|
* [AeroGear Integration](aerogear-integration.md)
|
||||||
* [VertX Integration](vertx-integration.md)
|
* [VertX Integration](vertx-integration.md)
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Artemis on Apache Karaf
|
||||||
|
|
||||||
|
Apache ActiveMQ Artemis can be installed on Apache Karaf (4.x or later) using the following commands from the Karaf shell:
|
||||||
|
|
||||||
|
feature:repo-add mvn:org.apache.activemq/artemis-features/1.2.1-SNAPSHOT/xml
|
||||||
|
feature:install artemis
|
||||||
|
|
Loading…
Reference in New Issue