博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
恶心的sbt 超级慢--解决
阅读量:6083 次
发布时间:2019-06-20

本文共 1797 字,大约阅读时间需要 5 分钟。

  hot3.png

最近在看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包”。

[repositories]

#local
aliyun: http://maven.aliyun.com/nexus/content/groups/public/
typesafe2: http://repo.typesafe.com/typesafe/releases/  
sonatype: http://oss.sonatype.org/content/repositories/snapshots  
uk_maven: http://uk.maven.org/maven2/  
ibibli: http://mirrors.ibiblio.org/maven2/
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

转载于:https://my.oschina.net/jj2050/blog/893452

你可能感兴趣的文章
iOS - Photo Album 图片/相册管理
查看>>
0723作业
查看>>
2016蓝桥杯 煤球数目 (代码)
查看>>
DOM&BOM
查看>>
a标签设置锚点定位div
查看>>
LightOJ 1079 Just another Robbery
查看>>
【NFS】nfs安装调优
查看>>
Linux 下子线程 exit code 在主线程中的使用
查看>>
类的实例化
查看>>
axios 获取不到数据错误
查看>>
一文掌握Docker Compose
查看>>
9.5 考试 第一题 礼物题解
查看>>
数据结构占坑
查看>>
【Laravel】安装并且运行
查看>>
设计模式之代理模式(一)
查看>>
My platform info!
查看>>
Xcode 8 : iOS xib is missing from working copy、iOS misssing file
查看>>
网关服务Spring Cloud Gateway(二)
查看>>
Java链接DB2的4种基本类型【转】
查看>>
【转】Beginning Game Programming v2.0
查看>>