-1- 问题背景
项目包含两个Module,但是在使用IntelliJ IDEA 进行开发时,发现在一个Module中可以成功import scala.util.parsing.json.JSON
,但是在另一Module中import时,会报错:
-2- 解决方法
参考了link1、link2,并自己稍做尝试之后,发现是IntelliJ IDEA对每个Module的Dependencies设置不同导致的,主要解决过程如下:
File
→ Project Structure
→ Project Settings
→ Modules
→ 有import问题的Module
→ dependencies
→ +
→ 2 Library ...
→ Maven: org.scala-lang.modules.scala-parse-combinators_2.11:1.0.4
→ add selected
→ Apply
→ OK
网友评论