我正在尝试使用 gmaven-plugincom.kc.Validator
在src/test/groovy/com/kc/Validator.groovy中编译一个类,然后使用该类运行一个脚本。在mvn compile
.class 文件位于 *target/test-classes/com/kc 但脚本执行失败后:
Failed to execute goal org.codehaus.gmaven:gmaven-plugin:1.5:execute (validate-configuration) on project solver2: startup failed, script1367530828433.groovy: 1: unable to resolve class com.kc.Validator
pom.xml 的相关部分是:
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>compile-groovy</id>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
<execution>
<id>validate</id>
<phase>test</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
(new com.kc.Validator()).validate()
</source>
</configuration>
</execution>
</executions>
</plugin>