How to use sbt from behind proxy - in windows 7?

后端 未结 4 1837
情深已故
情深已故 2020-12-30 10:48

I am trying to run SBT on Windows 7. To do so I followed the steps in the similar thread \"How to use sbt from behind proxy?\".

I have the foll

4条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-30 11:45

    Go to your SBT folder and use the below command

    set SBT_OPTS=-Dhttp.proxyHost=10.10.10.154 -Dhttp.proxyPort=8080 -Dhttps.proxyHost=10.10.10.154 -Dhttps.proxyPort=8080 -Dhttp.nonProxyHosts=localhost 
    

    and then

    sbt.bat
    

提交回复
热议问题