You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2019/01/24 19:32:24 UTC

[camel] branch camel-2.23.x updated: update camel-script to camel-groovy in doc for groovy-language component (#2734)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-2.23.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-2.23.x by this push:
     new 5ae5060  update camel-script to camel-groovy in doc for groovy-language component (#2734)
5ae5060 is described below

commit 5ae50601229ddf1ca3cd503adc06a4d61c43fd16
Author: MelissaFlinn <31...@users.noreply.github.com>
AuthorDate: Thu Jan 24 13:50:39 2019 -0500

    update camel-script to camel-groovy in doc for groovy-language component (#2734)
    
    * fusedoc-1940 updates to CXF component doc
    
    * change camel-script to camel-groovy (to avoid memory leak issue when Groovy scripts are used via camel-script, also fixed minor typo
---
 components/camel-groovy/src/main/docs/groovy-language.adoc | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/components/camel-groovy/src/main/docs/groovy-language.adoc b/components/camel-groovy/src/main/docs/groovy-language.adoc
index 2d4fc2c..c053035 100644
--- a/components/camel-groovy/src/main/docs/groovy-language.adoc
+++ b/components/camel-groovy/src/main/docs/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>
 ---------------------------------------