如果在使用 mvn clean install 命令时出现此错误,首先要检查 pom 文件的对应依赖是否作用域是否限定。比如
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<!--将scope注释掉即可-->
<scope>test</scope>
</dependency>
其次检查依赖版本是否重复引用。
所用依赖是否为最新版本。