Quoting Brian Ashburn <[EMAIL PROTECTED]>:

I'm sure this topic has come up before, but is there any current support for
Groovy 1.5 using the Maven2 plugin.  I'm trying to develop a Groovy project
with Maven2 and TestNG, so when it tries to generate the test stubs it fails
because of the version of the groovy compiler:


As far as I understand the problem is the groovy runtime dependency you have to add
        <dependency>
            <groupId>org.codehaus.mojo.groovy.runtime</groupId>
            <artifactId>groovy-runtime-1.1</artifactId>
            <version>1.0-beta-4-SNAPSHOT</version>
        </dependency>
There is no 1.5 runtime available. Have you tried substituting it with groovy all?

<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.5.1</version>

That might or might not work. I do not know what the difference is between the runtime and the all artifact..


---------------------------------------------------------------------
To unsubscribe from this list please visit:

   http://xircles.codehaus.org/manage_email

Reply via email to