Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Magnolia 6.0 comes with magnolia-module-groovy in version 2.7, shipping Apache Groovy 2.5.

Note

Earlier versions of Groovy were delivered in a single jar file called groovy-all but this library does not exist anymore.  magnolia-module-groovy-2.7 now The module now ships with only the minimum set of libraries:

  • groovy-2.5.0.jar
  • groovy-xml-2.5.0.jar

Some of your custom Groovy scripts may require additional libraries.

Expand
titleClick here to see the Maven dependencies for the Groovy libs bundled with Magnolia
Code Pro
languagexml
<dependency>
  <groupId>org.codehaus.groovy</groupId>
  <artifactId>groovy</artifactId>
  <version>2.5.0</version>
</dependency>
<dependency>
  <groupId>org.codehaus.groovy</groupId>
  <artifactId>groovy-xml</artifactId>
  <version>2.5.0</version>
</dependency>