sbt卡住的解決辦法,sbt設定代理

ArkFallen發表於2020-04-16

My Blog: sbt卡住的解決辦法,sbt設定代理

方法一:設定國內源(失敗)

  1. 建立~/.sbt/repositories檔案。
  2. 寫入
[repositories]
local
aliyun: http://maven.aliyun.com/nexus/content/groups/public
typesafe-ivy-releases: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
sonatype-oss-releases
maven-central
sonatype-oss-snapshots

  1. IDEA->Preferences -> BuildTool -> sbt -> VM parametes新增
-Dsbt.override.build.repos=true
-Dsbt.repository.config=~/.sbt/repositories

方法二:設定代理(解決)

注意:sbt會自動使用IDEA的代理設定,如果sbt可用那就不需要單獨為sbt設定代理,但是由於sbt特別需要https代理,所以大多數時候需要單獨設定。

IDEA的代理設定

1.使用socks代理(未解決)

IDEA->Preferences -> BuildTool -> sbt -> VM parametes新增

-DsocksProxyHost=127.0.0.1
-DsocksProxyPort=7070

理論上講直接使用socks代理是最方便的,但我在使用的過程中未連線成功。

2.使用http+https代理(解決)

非常重要!必須同時設定http和https代理,單獨一個仍然不行。(或許只用https也行)

IDEA->Preferences -> BuildTool -> sbt -> VM parametes新增

-DhttpProxyHost=127.0.0.1
-DhttpProxyPort=7890
-DhttpsProxyHost=127.0.0.1
-DhttpsProxyPort=7890

sbt的代理設定

相關文章