0

我正在尝试在 Windows 7 机器(代理后面)上创建一个新的 lagom scala 项目,但我收到错误消息“org.eclipse.jgit.api.errors.TransportException: git://github.com/lagom/lagom-scala. g8.git:连接超时”

这是命令:sbt new lagom/lagom-scala.g8

我设置了代理环境变量 http_proxy 但仍然出现此错误。任何想法想法..使这项工作?

4

1 回答 1

0

在https://github.com/lagom/lagom/issues/683对此进行了讨论

结论是这是 sbt 0.13.13 的限制,它使用 git 协议克隆模板,不能使用替代协议。

您可以通过强制更新版本的 sbt 和指定存储库的完整 https URL 来解决此问题,如下所示:

sbt new -Dsbt.version=0.13.15 https://github.com/lagom/lagom-scala.g8
于 2017-04-20T10:45:44.040 回答