1. 程式人生 > >編譯打包工具sbt的映象設定

編譯打包工具sbt的映象設定

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], bootOnly
central: http://repo1.maven.org/maven2/

以上配置檔案解釋順序是:本地→阿里雲映象→typesafe->Maven主映象。如果需要新增公司的 maven 映象,可以按照 key: value 的形式新增,key 的命名沒有要求(暫時沒注意到,但是最好也不要用什麼特殊符號吧 )

 

參考:

1、https://www.cnblogs.com/feiyumo/p/9237517.html