Versions Compared

Key

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

Magnolia 5.7 updates magnolia-module-groovy to the version 2.7 - , which ships the latest stable version of apache groovyApache Groovy 2.5.

Note

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

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

Some of your custom groovy Groovy scripts may require additional libraries.

Expand
titleClick here to see the Maven dependencies for the groovy 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>