0

我有两个 Maven 模块。一个命名tests一个ws-ejb

testspom.xml 中,我将 设置ws-ejb为依赖项,因此我可以在测试中使用 EJB。
这是我的testsmaven 模块的 pom.xml 的缩短版本:

<parent>
   <artifactId>myproj</artifactId>
   <groupId>myproj</groupId>
   <version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>tests</artifactId>

<dependencies>
  <dependency>
     <groupId>myproj</groupId>
     <artifactId>ws-ejb</artifactId>
     <version>1.0-SNAPSHOT</version>
     <scope>test</scope> 
     <type>war</type>
   <dependencies>
<dependency>
...
<!-- other dependencies in the file: junit and javax.ejb -->

<build>
  <plugins>
     <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <executions>
           <execution>
              <id>tests</id>
              <phase>integration-test</phase>
              <goals>
                 <goal>test</goal>
              </goals>
           </execution>
        </executions>
      <plugin>        
   <plugins>
 <build>

但是当我运行测试时,我收到一个编译错误,指出找不到我的 bean,但我将它作为依赖项,并且我的 IDE 没有抱怨丢失的 bean,但 maven 会:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:testCompile (default-testCompile) on project tests: Compilation failure: Compilation failure:
[ERROR] /home/r/projects/myproj/trunk/tests/src/test/java/com/myproj/MyTest.java [3,19]package com.myproj.beans does not exist

该包com.myproj.beans确实存在于ws-ejb我在模块中设置为依赖项的 maven 模块中tests。那么有什么问题呢?

编辑

这是位于testsmaven 模块下的 MyTest.javasrc/test/java/com/myproj/MyTest.java

package com.myproj;

import com.myproj.beans.MyBean; // compilation error here. If I remove this line it works and the test is run! 
//MyBean is located at `ws-ejb` maven module under src/main/java/com.myproj.beans
import javax.ejb.EJB;
import org.junit.Test;

public class MyTest {
    @Test
    public void test() {System.out.println("Print something...");}
}
4

1 回答 1

0

由于您没有发布任何示例代码,我只能猜测。但我的猜测是您的测试代码不在项目的测试文件夹中。那么这是什么意思?这意味着 maven 只是尝试编译和/或运行您的测试项目,这会导致异常。尝试从您的依赖项中删除范围属性,然后重试。仅当您将测试文件夹与例如 JUnit 一起使用时,测试范围才会起作用。如果您的代码位于“主”文件夹中,则这将不起作用,因为在运行时无法访问依赖项。如果有什么不清楚或者你有一些我没有得到的信息,请发表评论:)
亲切的问候
编辑:对此进行一些扩展:我强烈建议在作为测试的工件中为给定的工件编写测试代码。这样,如果测试失败,您将在有错误的工件中遇到 maven-build 失败。要查看它是如何工作的,您可以为特定类添加 JUnit 测试(大多数 IDE 会支持您)
编辑 2:好的,我做了一个快速的 googlesearch:这篇文章可以提供有关如何使用这些类的答案。我希望这能解决问题:)

于 2015-07-09T07:39:35.410 回答