我正在从Coursera学习Scala课程。
我有一个包含以下行的测试文件:
import org.junit.runner.RunWith
在这里,我收到以下错误:
Multiple markers at this line:
- object junit is not a member of package org
- object junit is not a member of package org
我的问题与此类似: object scalatest is not a member of package org
我通过添加到build.sbt
:
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")
但是,当我在项目的根文件夹中的scala控制台中运行eclipse
时,我得到:
<console>:11: error: not found: value eclipse
eclipse
答案 0 :(得分:2)
而不是build.sbt
,您需要将上面的行添加到项目文件夹中的plugins.sbt
文件中。如果它不存在,你应该创建它。