Scala sbt 添加国内镜像
Posted chenzechao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Scala sbt 添加国内镜像相关的知识,希望对你有一定的参考价值。
sbt运行时经常需要下载大量的jar包,默认连接到maven官网,速度通常比较慢。
在`~/.sbt/`下添加一个`repositories`文件,里面内容如下:
[[email protected] scala]# cat ~/.sbt/repositories [repositories] local nexus-aliyun:http://maven.aliyun.com/nexus/content/groups/public nexus-aliyun-ivy:http://maven.aliyun.com/nexus/content/groups/public/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext] typesafe: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
以上是关于Scala sbt 添加国内镜像的主要内容,如果未能解决你的问题,请参考以下文章
使用 sbt native 插件创建了 scala docker 镜像。我必须添加 LDAP CA 证书。如何在图像中添加它
为什么sbt build失败并出现“MissingRequirementError:找不到编译器镜像中的对象scala.runtime。”?