This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-2.21.x in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/camel-2.21.x by this push: new 5d6e28f update camel-script to camel-groovy in doc for groovy-language component (#2734) 5d6e28f is described below commit 5d6e28f0f0cf31d1fcc7bf2c6d58a3373755b9cf Author: MelissaFlinn <31925014+melissafl...@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 cbad043..0d9d0d6 100644 --- a/components/camel-groovy/src/main/docs/groovy-language.adoc +++ b/components/camel-groovy/src/main/docs/groovy-language.adoc @@ -179,19 +179,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> --------------------------------------- \ No newline at end of file