2

如何为 konanc 指定代理设置?

我试着用它开始

konanc hello.kt -Dhttp.proxyHost=10.0.0.100 -Dhttp.proxyPort=8800

并且还尝试在 Windows 上指定系统变量

set JAVA_FLAGS=-Dhttp.proxyHost=10.0.0.100 -Dhttp.proxyPort=8800

但它失败了

下载原生依赖...</p>

java.net.ConnectException: Connection refused: connect

谢谢!

4

2 回答 2

0

在 OS X 或 Linux 中,使用 kotlin 本机版本 1.0.2,使用环境变量JAVA_OPTS附加自定义 JVM 设置。

$ export JAVA_OPTS='-Dhttp.proxyHost=proxy-host -Dhttp.proxyPort=proxy-port -Dhttps.proxyHost=proxy-host -Dhttps.proxyPort=proxy-port'
于 2018-11-22T12:14:24.180 回答
0
set JVM_OPTS=-Dhttp.proxyHost=xxx -Dhttp.proxyPort=yyy -Dhttps.proxyHost=xxx -Dhttps.proxyPort=yyy

它对我有用。许多存储库都在使用 https,而不仅仅是 http。

于 2018-05-08T19:16:44.647 回答