码迷,mamicode.com
首页 > 其他好文 > 详细

Test类添加后 报错:程序包org.junit不存在解决

时间:2021-05-24 17:22:10      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:enc   letter   auto   ora   nsf   div   artifact   transform   over   


 

<dependency> <groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version>
 <!-- 作用域范围为test -->
 <scope>test</scope> </dependency>


将<scope>test</scope>注释掉即可

如下:
<dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>4.7</version>
</dependency>

 

原因:scope的作用范围问题,注释掉即可

Test类添加后 报错:程序包org.junit不存在解决

标签:enc   letter   auto   ora   nsf   div   artifact   transform   over   

原文地址:https://www.cnblogs.com/ios9/p/14802420.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!