Java Play SBT中IntelliJ更新后无效的项目名称

时间:2018-08-02 13:19:47

标签: java intellij-idea playframework sbt

我最近将IntelliJ更新为版本2018.2,并且自更新以来,在尝试启动Java Play SBT项目时一直出现此错误:

BUILD_NUMBER not defined, setting version: 
sbt.SettingKey$$anon$4@2ad8aeb5
[info] Loading settings from build.sbt ...
BUILD_NUMBER not defined, setting version: sbt.SettingKey$$anon$4@2ad8aeb5
[info] Set current project to [PROJECT_NAME] (in build file:/Users/username/Documents/Repos/[PROJECT_NAME]/)
[error] Not a valid project ID: [PROJECT_NAME]
[error] project [PROJECT_NAME]
[error]                      ^

我找不到原因。我没有更改build.sbtplugins.sbt文件中的任何内容。

1 个答案:

答案 0 :(得分:4)

更新后,您的项目结构可能已更改。检查您的项目模块。在我的情况下,root模块已重命名为project-id。将模块重命名为root(在我的运行配置中指定)解决了该问题。

enter image description here enter image description here