This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push:
new 5c87c22 [CAMEL-13040] Move modules to core/ folder
5c87c22 is described below
commit 5c87c226c12ecfaed116fec66d0b3c361e1bd367
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Feb 5 06:43:18 2019 +0100
[CAMEL-13040] Move modules to core/ folder
---
.../src/main/docs/activemq-component.adoc | 41 ++++++++++++++++++++--
.../camel/maven/packaging/PrepareReadmeMojo.java | 2 +-
2 files changed, 40 insertions(+), 3 deletions(-)
diff --git a/components/camel-activemq/src/main/docs/activemq-component.adoc
b/components/camel-activemq/src/main/docs/activemq-component.adoc
index f5f75c3..1c6f927 100644
--- a/components/camel-activemq/src/main/docs/activemq-component.adoc
+++ b/components/camel-activemq/src/main/docs/activemq-component.adoc
@@ -3,8 +3,45 @@
*Available as of Camel version 1.0*
+The ActiveMQ component is an extension to the JMS component and has been
pre-configured for using Apache ActiveMQ 5.x (not Artemis).
+Users of Apache ActiveMQ Artemis should use the JMS component.
-#### Component options
+[TIP]
+====
+*More documentation*
+
+See the JMS component for more documentation and examples
+====
+
+Maven users will need to add the following dependency to their `pom.xml`
+for this component:
+
+[source,xml]
+------------------------------------------------------------
+<dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-activemq</artifactId>
+ <version>x.x.x</version>
+ <!-- use the same version as your Camel core version -->
+</dependency>
+------------------------------------------------------------
+
+=== URI format
+
+--------------------------------------------
+activemq:[queue:|topic:]destinationName[?options]
+--------------------------------------------
+
+Where `destinationName` is a JMS queue or topic name. By default, the
+`destinationName` is interpreted as a queue name. For example, to
+connect to the queue, `foo` use:
+
+-----------
+activemq:foo
+-----------
+
+
+=== Component options
// component options: START
The ActiveMQ component supports 85 options, which are listed below.
@@ -102,7 +139,7 @@ The ActiveMQ component supports 85 options, which are
listed below.
|===
// component options: END
-#### Endpoint options
+=== Endpoint options
// endpoint options: START
diff --git
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareReadmeMojo.java
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareReadmeMojo.java
index d0fedd4..54eeca2 100644
---
a/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareReadmeMojo.java
+++
b/tooling/maven/camel-package-maven-plugin/src/main/java/org/apache/camel/maven/packaging/PrepareReadmeMojo.java
@@ -94,7 +94,7 @@ public class PrepareReadmeMojo extends AbstractMojo {
/**
* The directory for camel-core
*/
- @Parameter(defaultValue = "${project.directory}/../../../camel-core")
+ @Parameter(defaultValue = "${project.directory}/../../../core/camel-core")
protected File readmeCoreDir;
/**