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

后端 未结 4 1843
情深已故
情深已故 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:43

    Let's take a look at your errors:

    :::: ERRORS Server access Error: Connection timed out: connect url=https://repo.typesafe.com/typesafe/ivy-releases/org.fusesource.jansi/jansi/1.11.ivys/ivy.xml
    

    Sbt is trying to use https, but you don't have proxy configuration for it. Try setting https proxy variables:

    • https.proxyHost
    • https.proxyPort

    I guess you could try the same values as for http proxy.

提交回复
热议问题