我正在尝试在Scala 2.8.1中运行一个名为LinkedIn Norbert(https://github.com/linkedin/norbert)的开源程序。我已经添加了所有jar文件,因此可以编译程序,但是当我尝试在examples / src / main / java中运行com.linkedin.norbert.javacompat.network.RunNorbertSetup类时,出现以下错误:

Exception in thread "main" java.lang.NoSuchMethodError: scala.Predef$.augmentString(Ljava/lang/String;)Lscala/collection/immutable/StringOps;
    at com.linkedin.norbert.jmx.JMX$.name(JMX.scala:59)
    at com.linkedin.norbert.cluster.ClusterClient$$anon$1.<init>(ClusterClient.scala:56)
    at com.linkedin.norbert.cluster.ClusterClient$class.$init$(ClusterClient.scala:55)
    at com.linkedin.norbert.cluster.zookeeper.ZooKeeperClusterClient.<init>(ZooKeeperClusterClient.scala:22)
    at com.linkedin.norbert.cluster.ClusterClient$.apply(ClusterClient.scala:33)
    at com.linkedin.norbert.javacompat.cluster.ZooKeeperClusterClient.<init>(ZooKeeperClusterClient.scala:23)
    at com.linkedin.norbert.javacompat.cluster.ZooKeeperClusterClient.<init>(ZooKeeperClusterClient.scala:21)
    at com.linkedin.norbert.javacompat.network.RunNorbertSetup.configCluster(RunNorbertSetup.java:115)
    at com.linkedin.norbert.javacompat.network.RunNorbertSetup.main(RunNorbertSetup.java:21)


我要怎么做才能克服这个错误?我查看了其他Stack Overflow和论坛线程,但这些都无济于事。

仅供参考:我使用SBT构建了程序。

非常感谢,
丽贝卡

最佳答案

运行“干净”而不是构建。也从项目目录中删除所有build和bin文件夹。

10-04 12:56