Skip to content

Commit 0180f1b

Browse files
committed
docs(update): update related installation and user guides
related to: camunda/camunda-bpm-platform/issues/3679
1 parent cbf41d2 commit 0180f1b

File tree

5 files changed

+47
-12
lines changed

5 files changed

+47
-12
lines changed

content/installation/full/jboss/manual.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Camunda Spin is not available in scripts if a process definition is deployed via
283283

284284
Add the following modules (if not existing) from the folder `$WILDFLY_DISTRIBUTION/modules/` to the folder `$WILDFLY_HOME/modules/`:
285285

286-
* `org/codehaus/groovy/groovy-all`
286+
* `org/apache/groovy/groovy-all`
287287

288288

289289
### Freemarker Integration
@@ -305,5 +305,3 @@ Add the following modules (if not existing) from the folder `$WILDFLY_DISTRIBUTI
305305
* `org/graalvm/sdk/graal-sdk`
306306
* `org/graalvm/truffle/truffle-api`
307307
* `com/ibm/icu/icu4j`
308-
309-

content/installation/full/tomcat/manual.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,13 @@ In order to activate Camunda Spin functionality for a process engine, a process
262262

263263
Add the following artifacts (if not existing) from the folder `$TOMCAT_DISTRIBUTION/lib/` to the folder `$TOMCAT_HOME/lib/`:
264264

265-
* `groovy-all-$GROOVY_VERSION.jar`
265+
* `groovy-$GROOVY_VERSION.jar`
266+
* `groovy-jsr223-$GROOVY_VERSION.jar`
267+
* `groovy-json-$GROOVY_VERSION.jar`
268+
* `groovy-xml-$GROOVY_VERSION.jar`
269+
* `groovy-templates-$GROOVY_VERSION.jar`
270+
* `groovy-dateutil-$GROOVY_VERSION.jar`
271+
* `groovy-datetime-$GROOVY_VERSION.jar`
266272

267273

268274
## Freemarker Integration

content/installation/full/was/manual-liberty.md

+2
Original file line numberDiff line numberDiff line change
@@ -642,6 +642,8 @@ Add the following artifacts (if not existing) from the folder `$WAS_DISTRIBUTION
642642
* `groovy-json-$GROOVY_VERSION.jar`
643643
* `groovy-xml-$GROOVY_VERSION.jar`
644644
* `groovy-templates-$GROOVY_VERSION.jar`
645+
* `groovy-dateutil-$GROOVY_VERSION.jar`
646+
* `groovy-datetime-$GROOVY_VERSION.jar`
645647

646648
## GraalVM JavaScript integration
647649

content/user-guide/dmn-engine/expressions-and-scripts.md

+36-7
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,45 @@ You can also use every other script language which provides a [JSR-223]
8181
implementation. This includes `groovy`, `python` and `ruby`. To use these
8282
languages you have to add the corresponding dependency to your project.
8383
84-
For example, to use `groovy` as language for expressions add this dependency
84+
For example, to use `groovy` as language for expressions add these dependencies
8585
to your project `pom.xml`:
8686
8787
```xml
88-
<dependency>
89-
<groupId>org.codehaus.groovy</groupId>
90-
<artifactId>groovy-all</artifactId>
91-
<!-- please update this version if needed -->
92-
<version>2.4.5</version>
93-
</dependency>
88+
<dependency>
89+
<groupId>org.apache.groovy</groupId>
90+
<artifactId>groovy</artifactId>
91+
<version>${GROOVY_VERSION}</version>
92+
</dependency>
93+
<dependency>
94+
<groupId>org.apache.groovy</groupId>
95+
<artifactId>groovy-jsr223</artifactId>
96+
<version>${GROOVY_VERSION}</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.apache.groovy</groupId>
100+
<artifactId>groovy-json</artifactId>
101+
<version>${GROOVY_VERSION}</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>org.apache.groovy</groupId>
105+
<artifactId>groovy-xml</artifactId>
106+
<version>${GROOVY_VERSION}</version>
107+
</dependency>
108+
<dependency>
109+
<groupId>org.apache.groovy</groupId>
110+
<artifactId>groovy-templates</artifactId>
111+
<version>${GROOVY_VERSION}</version>
112+
</dependency>
113+
<dependency>
114+
<groupId>org.apache.groovy</groupId>
115+
<artifactId>groovy-dateutil</artifactId>
116+
<version>${GROOVY_VERSION}</version>
117+
</dependency>
118+
<dependency>
119+
<groupId>org.apache.groovy</groupId>
120+
<artifactId>groovy-datetime</artifactId>
121+
<version>${GROOVY_VERSION}</version>
122+
</dependency>
94123
```
95124
96125
# Default Expression Languages

content/user-guide/process-engine/scripting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ In case the Script Engine module should be installed globally and Wildfly is use
307307
<jboss-deployment-structure>
308308
<deployment>
309309
<dependencies>
310-
<module name="org.codehaus.groovy.groovy-all"
310+
<module name="org.apache.groovy.groovy-all"
311311
services="import" />
312312
</dependencies>
313313
</deployment>

0 commit comments

Comments
 (0)