本文主要是介绍Idea 建立sbt项目非常慢问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
问题:在国内通过idea建立sbt项目往往很慢,是因为镜像仓库在国外很慢
解决方案:配置国内镜像仓库
在sbt目录下配置文件,国内镜像文件,可以增加一个repo.repositories文件。
内容:
[repositories]
local
Nexus osc : http://maven.oschina.net/content/groups/public/
Nexus osc thirdparty : http://maven.oschina.net/content/repositories/thirdparty/
typesafe: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
typesafe2: http://repo.typesafe.com/typesafe/releases/
sbt-plugin: http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/
sonatype: http://oss.sonatype.org/content/repositories/snapshots
uk_maven: http://uk.maven.org/maven2/
ibibli: http://mirrors.ibiblio.org/maven2/
repo2: http://repo2.maven.org/maven2/
这篇关于Idea 建立sbt项目非常慢问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!