maven项目在打包编译时提示:
解决办法:
将pom中junit依赖中的scope给注释掉
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<!-- 表示开发的时候引入,发布的时候不会加载此包
<scope>test</scope>
-->
</dependency>
maven项目在打包编译时提示:
解决办法:
将pom中junit依赖中的scope给注释掉
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<!-- 表示开发的时候引入,发布的时候不会加载此包
<scope>test</scope>
-->
</dependency>