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 8cba688 Regen
8cba688 is described below
commit 8cba688d7561297c13aa7e02232590d7bf1d25c6
Author: Andrea Cosentino <[email protected]>
AuthorDate: Fri Jan 25 08:08:13 2019 +0100
Regen
---
docs/components/modules/ROOT/pages/groovy-language.adoc | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/docs/components/modules/ROOT/pages/groovy-language.adoc
b/docs/components/modules/ROOT/pages/groovy-language.adoc
index 2d4fc2c..c053035 100644
--- a/docs/components/modules/ROOT/pages/groovy-language.adoc
+++ b/docs/components/modules/ROOT/pages/groovy-language.adoc
@@ -195,19 +195,18 @@ result = body * 2 + 1
### Dependencies
-To use scripting languages in your camel routes you need to add the a
-dependency on *camel-script* which integrates the JSR-223 scripting
-engine.
+To use scripting languages in your camel routes you need to add a
+dependency on *camel-groovy*.
-If you use maven you could just add the following to your pom.xml,
-substituting the version number for the latest & greatest release (see
+If you use Maven you could just add the following to your `pom.xml`,
+substituting the version number for the latest and greatest release (see
the download page for the latest versions).
[source,xml]
---------------------------------------
<dependency>
<groupId>org.apache.camel</groupId>
- <artifactId>camel-script</artifactId>
+ <artifactId>camel-groovy</artifactId>
<version>x.x.x</version>
</dependency>
---------------------------------------