This is an automated email from the ASF dual-hosted git repository.
acosentino 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 8ef2ad0 Enhancing the implementation
new 499cec9 Merge pull request #3748 from hakuseki/patch-3
8ef2ad0 is described below
commit 8ef2ad0feff0f87e84cdacf9d6d3ceb54394c921
Author: Mikael Andersson Wigander <[email protected]>
AuthorDate: Wed Apr 15 17:08:42 2020 +0200
Enhancing the implementation
Adding the maven statement
---
docs/user-manual/modules/ROOT/pages/Endpoint-dsl.adoc | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/docs/user-manual/modules/ROOT/pages/Endpoint-dsl.adoc
b/docs/user-manual/modules/ROOT/pages/Endpoint-dsl.adoc
index 8989d07..ed61607 100644
--- a/docs/user-manual/modules/ROOT/pages/Endpoint-dsl.adoc
+++ b/docs/user-manual/modules/ROOT/pages/Endpoint-dsl.adoc
@@ -34,3 +34,15 @@ It further allows leveraging the Java editor code completion
to access the list
The DSL can be accessed in several ways, but the main one is to switch to
using an `EndpointRouteBuilder` instead of the usual
`RouteBuilder`. It provides access to all endpoint builders which are defined
through inheritance on the `EndpointRouteBuilder`.
+
+Maven users will need to add the following dependency to their `pom.xml` for
this component:
+
+[source,xml]
+.pom.xml
+----
+<dependency>
+ <groupId>org.apache.camel</groupId>
+ <artifactId>camel-endpointdsl</artifactId>
+ <version>x.x.x</version>
+</dependency>
+----