On 17/11/2008, at 2:54 PM, Ed wrote:

What's the recipe? Seems like there's alot to do.

All I had to do was drop the following in <build> -> <plugins>…

<plugin>
    <groupId>org.codehaus.groovy.maven</groupId>
    <artifactId>gmaven-plugin</artifactId>
    <version>1.0-rc-3</version>
    <extensions>true</extensions>
    <executions>
        <execution>
            <goals>
                <goal>generateStubs</goal>
                <goal>compile</goal>
                <goal>generateTestStubs</goal>
                <goal>testCompile</goal>
            </goals>
        </execution>
    </executions>
</plugin>

You can probably drop the ‘generateStubs’ and ‘compile’ executions if you only want it for testing.

--

LD.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to