@@ -81,16 +81,45 @@ You can also use every other script language which provides a [JSR-223]
81
81
implementation. This includes `groovy`, `python` and `ruby`. To use these
82
82
languages you have to add the corresponding dependency to your project.
83
83
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
85
85
to your project `pom.xml`:
86
86
87
87
```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>
94
123
```
95
124
96
125
# Default Expression Languages
0 commit comments