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