创建播放框架项目时失败

Failure during creation of a play framework project

我想用 java 创建一个项目并运行框架。 我正在开发 linux(Linux Mint 19.1 Tessa) 和 windows (win 10) 笔记本。 linux,在尝试创建新项目之前,我成功执行了一个示例项目。在 windows 我没有实现这两个目标,因为当我尝试执行现有项目时它无法识别 sbt,并且因为新项目出现以下问题。

这是我创建新项目时输入的语句:

sbt new playframework/play-java.g8

这是控制台上的输出,其中包含一些输入请求:

info] welcome to sbt 1.3.12 (Oracle Corporation Java 1.8.0_181)
[info] set current project to sandbox (in build file:/home/.../sandbox/)
[info] set current project to sandbox (in build file:/home/.../sandbox/)
Username: pippo
Password: 
Username: pippo
Password: 
Username: pippo
Password: 

https://github.com/playframework/play-java.g8.git: not authorized

在 windows 我也无法插入用户名和密码的值。

为什么 sbt 要求我输入用户名和密码?我应该输入什么样的值?为什么在这个过程中我不能在 windows 中输入任何内容?

如果模板不对,会要求username/password,模板有错字,应该是:

sbt new playframework/play-java-seed.g8

没有

sbt new playframework/play-java.g8

Reference