IntelliJ Idea 找不到 sbt-idea-compiler-indices
IntelliJ Idea Cannot find sbt-idea-compiler-indices
已安装 IntelliJ Idea CE 2019.1(在 Win64 上,Windows 7 和 10,来自 zip)- 在这两种情况下都找不到下面显示的依赖项,因此无法导入 sbt 项目。
该项目有效,即它在命令行上使用 sbt 进行编译。
我正在尝试通过打开 build.sbt "as a project" 导入项目,这通常有效。
我可以使用 Idea 2018.3 导入同一个项目 - 所以听起来 2019.1 中的 sbt 插件发生了一些变化
我在防火墙后面工作,但我已经配置了代理并检查它是否可以连接到外部存储库。
日志中没有提到"sbt-idea-compiler-indices",我看到消息显示Idea正在从外部下载文件。
sbt.librarymanagement.ResolveException: unresolved dependency: org.jetbrains#sbt-idea-compiler-indices;0.1.3: not found
知道这意味着什么,或者我在哪里可以找到这种依赖关系?
如果一切都失败了,我可以手动下载文件并在 ~/.ivy2 下设置它们
[warn] org.jetbrains:sbt-idea-compiler-indices:0.1.3 (scalaVersion=2.12, sbtVersion=1.0)
[warn] +- org.scala-sbt:global-plugins:0.0 (scalaVersion=2.12, sbtVersion=1.0)
sbt-compiler-indices 是一个与 IntelliJ Scala 插件一起分发的 sbt 插件。通常它将从磁盘解析,但在某些设置中这会失败,例如当使用 override.build.repos=true
选项启动 sbt 时。当它被添加到主 sbt-plugin-releases
回购协议时应该会很快修复。
作为一种变通方法,如果您从 IntelliJ 启动 sbt 时没有 override.build.repos=true
选项一次,它应该可以工作,这样插件就可以解析到缓存中。
已安装 IntelliJ Idea CE 2019.1(在 Win64 上,Windows 7 和 10,来自 zip)- 在这两种情况下都找不到下面显示的依赖项,因此无法导入 sbt 项目。
该项目有效,即它在命令行上使用 sbt 进行编译。
我正在尝试通过打开 build.sbt "as a project" 导入项目,这通常有效。
我可以使用 Idea 2018.3 导入同一个项目 - 所以听起来 2019.1 中的 sbt 插件发生了一些变化
我在防火墙后面工作,但我已经配置了代理并检查它是否可以连接到外部存储库。
日志中没有提到"sbt-idea-compiler-indices",我看到消息显示Idea正在从外部下载文件。
sbt.librarymanagement.ResolveException: unresolved dependency: org.jetbrains#sbt-idea-compiler-indices;0.1.3: not found
知道这意味着什么,或者我在哪里可以找到这种依赖关系?
如果一切都失败了,我可以手动下载文件并在 ~/.ivy2 下设置它们
[warn] org.jetbrains:sbt-idea-compiler-indices:0.1.3 (scalaVersion=2.12, sbtVersion=1.0)
[warn] +- org.scala-sbt:global-plugins:0.0 (scalaVersion=2.12, sbtVersion=1.0)
sbt-compiler-indices 是一个与 IntelliJ Scala 插件一起分发的 sbt 插件。通常它将从磁盘解析,但在某些设置中这会失败,例如当使用 override.build.repos=true
选项启动 sbt 时。当它被添加到主 sbt-plugin-releases
回购协议时应该会很快修复。
作为一种变通方法,如果您从 IntelliJ 启动 sbt 时没有 override.build.repos=true
选项一次,它应该可以工作,这样插件就可以解析到缓存中。