我正在尝试通过typesafe激活器ui创建示例Play Framework项目。 根据{{1}}我做了以下事情:
使用:
创建https://typesafe.com/activator/docs
c:\users\myuser\.activator\activatorconfig.txt
还创建了# Proxy settings
-Dhttp.proxyHost=proxyname
-Dhttp.proxyPort=80
-Dhttps.proxyHost=proxyname
-Dhttps.proxyPort=80
# Here we configure the hosts which should not go through the proxy. You should include your private network, if applicable.
-Dhttp.nonProxyHosts="localhost|127.0.0.1"
# These are commented out, but if you need to use authentication for your proxy, please fill these out.
#-Dhttp.proxyUser=PUT YOUR PROXY USER HERE
#-Dhttp.proxyPassword=PUT YOUR PROXY PASSWORD HERE
,其中包含与c:\users\myuser\.sbt\jvmargs
完全相同的属性。 activatorconfig.txt
只是一个没有扩展名的文本文件。
当我运行jvmargs
然后尝试创建一些示例应用程序时,我在控制台中获得以下内容:
activator ui
在UI中显然该过程不会继续创建样本。知道我做错了吗?
答案 0 :(得分:1)
尝试将代理添加到系统变量(控制面板 - >系统 - >编辑系统环境变量 - >环境变量):
HTTP_PROXY=http://<host>:<port>
设置变量后,您需要重新启动计算机。
结果应如下所示:
https://drive.google.com/file/d/0B3dqHRwrCMBCZUVIMElOeDV5UU0/view?usp=sharing