最近在看sbt相关的资料。发现其构建仓库是用ivy和maven
相信使用过maven的人都知道下载 jar的过程十分痛苦(因为你穷,买不起VPN)
然后我们天朝本来有开源中国的maven库,后来又突然关掉了。
然后我尝试使用
https://jcenter.bintray.com/作为库源(没错,这是安卓那边经常见到的)
后来发现还是那么慢,实在没有办法了。只好再去google。
搜索字眼:“sbt 恶心” “sbt慢” “sbt 卡”后来搜到几篇文章说得挺有道理,然后动手试试
https://afoo.me/posts/2014-11-05-how-make-sbt-jump-over-GFW.html
这篇解释比较详细,可惜直接复制到“相应位置”不尽人意
http://blog.csdn.net/fo11ower/article/details/52549482
通过这篇我知道“快又好”的阿里云maven仓库
修改文件位置:
window:C:\Users\用户目录\.sbt\repositories
linux:~/.sbt/repositories
mac:呵呵呵
修改文件内容:
[repositories]
#local
public: http://maven.aliyun.com/nexus/content/groups/public/#这个maven
typesafe:http://dl.bintray.com/typesafe/ivy-releases/ , [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly#这个ivy
ivy-sbt-plugin:http://dl.bintray.com/sbt/sbt-plugin-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]#这个ivy
sonatype-oss-releases
sonatype-oss-snapshots
我试过window和linux首次都能在5分钟下载完相应“scala”和相应的“jar包”。
最后一句:好恶心的网络