“Unknown artifact. Not resolved or indexed” error for scalatest 手动添加依赖

文章目录

  • 问题描述
  • 解决 sbt 下载依赖后不能使用

问题描述

使用sbt 下载了依赖后代码中不能使用 import 出问题,中间排查了很久决定记录一下。
“Unknown artifact. Not resolved or indexed” error for scalatest 手动添加依赖_第1张图片

解决 sbt 下载依赖后不能使用

sbt 1.3.0+使用Coursier实施依赖项管理。 在sbt 1.3.0之前,sbt使用Apache Ivy已经有十年了。 Coursier在保持兼容性方面做得很好,但是某些功能可能特定于Apache Ivy。 在这种情况下,您可以使用以下设置切换回ivy

ThisBuild / useCoursier := false

在这里插入图片描述

手动配置添加下载好的包
“Unknown artifact. Not resolved or indexed” error for scalatest 手动添加依赖_第2张图片
“Unknown artifact. Not resolved or indexed” error for scalatest 手动添加依赖_第3张图片
解决!!

参考
https://stackoverflow.com/questions/41372978/unknown-artifact-not-resolved-or-indexed-error-for-scalatest
https://www.cnblogs.com/zhaoxd07/p/7235852.html

你可能感兴趣的:(后端,intellj,idea配置问题总结,scala)