由于包junit.org不存在但是测试在eclipse中工作,因此Maven测试失败

时间:2016-05-05 09:11:55

标签: java eclipse maven unit-testing junit

我对Maven不是很熟悉,所以如果我犯了一个明显的错误,我很抱歉。 我写了一些JUnit测试,当我右键单击文件并选择" Run as JUnit"时,eclipse中的所有测试运行正常。但是当我尝试在控制台中使用mvn test时,它会失败,因为它显示package org.junit does not exist

their docs

这是我的pomfile的样子:

<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>Othello</groupId>
  <artifactId>Othello</artifactId>
  <version>0.0.1</version>
  <name>Othello</name>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.3</version>
        <configuration>
          <source/>
          <target/>
        </configuration>
      </plugin>
    </plugins>
    <finalName>Othello</finalName>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

有谁知道我做错了什么?

0 个答案:

没有答案