0

我正在尝试使用 gmaven-plugincom.kc.Validatorsrc/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>
4

1 回答 1

1

您是否尝试过使用<scriptpath>内部<configuration>

<configuration>
  <scriptpath>
    <element>${pom.basedir}/src/test/groovy/com/kc</element>
  </scriptpath>
  <source>......</souce>
</configuration>

请参阅使用 Groovy 类

于 2013-05-03T18:55:12.060 回答