Maven无法解析org.junit.test

时间:2017-07-11 10:19:30

标签: maven grails junit

我正在尝试从命令行在Groovy中编译和运行单元测试。项目中的包结构不遵循命名约定 - 这是我此时无法改变的。课程组织为:

src/abc/def/SomeClass.groovy

src/abc/tests/def/TestSomeClass.groovy

当我运行mvn test时,消息为:

  

无法解析类org.junit.Test

  

无法恢复类org.junit.Assert

在班级src/abc/tests/def/TestSomeClass.groovy

我的POM是:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0                       http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.codehaus.mojo</groupId>
   <artifactId>my-project</artifactId>
   <version>1.0</version>
   <build>
      <plugins>
         <plugin>
            <groupId>org.codehaus.gmavenplus</groupId>
            <artifactId>gmavenplus-plugin</artifactId>
            <version>1.5</version>
            <configuration>
               <sources>
                  <source>
                     <directory>src</directory>
                     <includes>
                        <include>**/*.groovy</include>
                     </includes>
                  </source>
               </sources>
            </configuration>
            <executions>
               <execution>
                  <goals>
                     <goal>compile</goal>
                     <goal>addSources</goal>
                     <goal>addTestSources</goal>
                     <goal>testCompile</goal>
                  </goals>
               </execution>
            </executions>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.18.1</version>
            <configuration>
               <includes>
                  <include>**/Test*.groovy</include>
               </includes>
            </configuration>
         </plugin>
      </plugins>
   </build>
   <dependencies>
      <dependency>
         <groupId>org.codehaus.groovy</groupId>
         <artifactId>groovy-all</artifactId>
         <version>2.4.7</version>
      </dependency>
      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <version>4.11</version>
         <scope>test</scope>
      </dependency>
   </dependencies>
</project>

1 个答案:

答案 0 :(得分:0)

标准的Maven目录布局是这样的:

生产:
iframe

测试:
<project>/src/main/groovy/abc/def

如果您按照此计划安排来源,则不应该有问题。

More informations