Use groovy-x.y.z-indy jar for better scripting performance

Using the Groovy jar with the indy (short for `invokedynamic`) classifier enables usage of the `invokedynamic` instruction available in Java 7+. Due to buggy JVMs, it should only be used with Java 7u60 or later.
This commit is contained in:
Chris Earle 2014-10-21 13:08:08 -04:00
parent 189d432221
commit 60c16ba92c
1 changed files with 1 additions and 0 deletions

View File

@ -278,6 +278,7 @@
<groupId>org.codehaus.groovy</groupId> <groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId> <artifactId>groovy-all</artifactId>
<version>2.3.2</version> <version>2.3.2</version>
<classifier>indy</classifier>
<scope>compile</scope> <scope>compile</scope>
<optional>true</optional> <optional>true</optional>
</dependency> </dependency>