SBT 配置映象加速源

lbovery發表於2019-04-26

最近專案轉型,開始使用sbt作為構建工具,

一段時間發現jar包下載速度實在感人,遂在網上搜尋解決方案,親測以下方案有效

無論是windows系統還是linux系統,

linux在 /root/.sbt 目錄下

windows 在user/.sbt 目錄下

新建檔名 repositories

寫入下面內容

[repositories]
local
public: http://maven.aliyun.com/nexus/content/groups/public/
typesafe:http://dl.bintray.com/typesafe/ivy-releases/ , [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
ivy-sbt-plugin:http://dl.bintray.com/sbt/sbt-plugin-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]
sonatype-oss-releases

sonatype-oss-snapshots

相關文章