編譯打包工具sbt的鏡像設置
阿新 • • 發佈:2019-01-05
org art 符號 repo clas aliyun ext 公司 logs
sbt可以和maven共用一個鏡像,公司內部有的自然最後不過
創建文件:~/.sbt/repositories
[repositories] local aliyun: http://maven.aliyun.com/nexus/content/groups/public/
typesafe: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnlycentral: http://repo1.maven.org/maven2/
以上配置文件解釋順序是:本地→阿裏雲鏡像→typesafe->Maven主鏡像。如果需要添加公司的 maven 鏡像,可以按照 key: value 的形式添加,key 的命名沒有要求(暫時沒註意到,但是最好也不要用什麽特殊符號吧 )
參考:
1、https://www.cnblogs.com/feiyumo/p/9237517.html
編譯打包工具sbt的鏡像設置