未知工件 sbtplugin 带有 scala 2.12 的超级安全编译器

Posted

技术标签:

【中文标题】未知工件 sbtplugin 带有 scala 2.12 的超级安全编译器【英文标题】:Unknown artifact sbtplugin Super safe compiler with scala 2.12 【发布时间】:2017-07-02 17:37:08 【问题描述】:

在 Scala 2.12 的 sbt 项目中,我使用 IntelliJ IDEA 并希望导入 scalatest。 为了安装推荐的 SuperSafe 社区版 Scala 编译器插件。我遵循了here 的指示。

我的plugin.sbt

addSbtPlugin("com.artima.supersafe" % "sbtplugin" % "1.1.2")

Intellij 导入显示的错误是:

        SBT project import
        [warn]  [FAILED     ] com.artima.supersafe#sbtplugin;1.1.2!sbtplugin.jar(src):  (0ms)
        [warn] ==== typesafe-ivy-releases: tried
        [warn]   https://repo.typesafe.com/typesafe/ivy-releases/com.artima.supersafe/sbtplugin/scala_2.10/sbt_0.13/1.1.2/srcs/sbtplugin-sources.jar
        [warn] ==== sbt-plugin-releases: tried
        [warn]   https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/com.artima.supersafe/sbtplugin/scala_2.10/sbt_0.13/1.1.2/srcs/sbtplugin-sources.jar
        [warn] ==== local: tried
        [warn]   /Users/salvob/.ivy2/local/com.artima.supersafe/sbtplugin/scala_2.10/sbt_0.13/1.1.2/srcs/sbtplugin-sources.jar
        [warn] ==== public: tried
        [warn]   https://repo1.maven.org/maven2/com/artima/supersafe/sbtplugin_2.10_0.13/1.1.2/sbtplugin-1.1.2-sources.jar
        [warn] ==== Artima Maven Repository: tried
        [warn]   http://repo.artima.com/releases/com/artima/supersafe/sbtplugin_2.10_0.13/1.1.2/sbtplugin-1.1.2-sources.jar
        [warn]  ::::::::::::::::::::::::::::::::::::::::::::::
        [warn]  ::              FAILED DOWNLOADS     ... 

可能与新的 Scala 版本不兼容?

【问题讨论】:

【参考方案1】:

尝试以下方法:

当我们在projects/build.sbt中添加插件时:

addSbtPlugin("com.artima.supersafe" % "sbtplugin" % "1.1.2")

我们必须在其他任何地方添加上述插件

添加到~/.sbt/0.13/global.sbt

resolvers += "Artima Maven Repository" at "http://repo.artima.com/releases"

不要不要将此解析器添加到其他任何地方

确保在每个 sbt 行之前和之后都有一个空行

HTH

【讨论】:

以上是关于未知工件 sbtplugin 带有 scala 2.12 的超级安全编译器的主要内容,如果未能解决你的问题,请参考以下文章

Maven:解析工件时出错 - 提供节点名或服务名,或未知

为啥scala maven工件对每个scala版本都有一个工件,而不是每个scala版本都有一个分类器?

Sbt-assembly 未解决的依赖,Scala

SBT 与 Maven Central - 在工件 url 中摆脱 Scala 版本

scalatest 的“未知工件。未解决或索引”错误

在 Elasticbeanstalk for Scala Apps 中为 Docker 多容器环境部署和托管工件的最佳实践是啥?