Author: veithen
Date: Sun Mar 14 00:50:37 2010
New Revision: 922700
URL: http://svn.apache.org/viewvc?rev=922700&view=rev
Log:
Replacing Geronimo's script-maven-plugin by gmaven-plugin from Codehaus.
Reason: When using the plugin from Geronimo, Maven tries to fetch the Groovy
JAR on every execution. This slows down the build.
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml
Modified: webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml?rev=922700&r1=922699&r2=922700&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-api/pom.xml Sun Mar
14 00:50:37 2010
@@ -116,20 +116,20 @@
</executions>
</plugin>
<plugin>
- <groupId>org.apache.geronimo.genesis.plugins</groupId>
- <artifactId>script-maven-plugin</artifactId>
- <version>1.1</version>
+ <groupId>org.codehaus.groovy.maven</groupId>
+ <artifactId>gmaven-plugin</artifactId>
+ <version>1.0</version>
<executions>
<execution>
<phase>generate-test-resources</phase>
<goals>
- <goal>groovy</goal>
+ <goal>execute</goal>
</goals>
<configuration>
<source>
<!-- This generates a list of the files in
src/test/resources/conformance.
This is useful when loading these files
from the classpath. -->
- <body><![CDATA[
+ <![CDATA[
def filelist = new
File(project.build.directory, "generated-test-resources/conformance/filelist");
filelist.parentFile.mkdirs();
filelist.delete();
@@ -139,7 +139,7 @@
filelist.append("$it.name\n");
}
})
- ]]></body>
+ ]]>
</source>
</configuration>
</execution>