Maven-package org.junit does not exist
在java里面使用@Test做单元测试,想打个jar包用maven来build工程的时候,发现报错:
经过对比pom文件,发现junit的pom有点问题:
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<!-- <scope>test</scope> -->
</dependency>