在查看play项目时,我在/project/plugins.sbt中发现了这一行
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.0")但是我在built.sbt的libraryDependencies ++= ...中找不到play。
这很让人困惑。
发布于 2019-03-22 00:00:40
虽然我们可以在build.sbt中直接将各种Play组件添加到libraryDependencies中,但Play的sbt-plugin将通过添加
"com.typesafe.play" %% "play" % play.core.PlayVersion.current % "provided"以及与libraryDependencies相关的其他依赖项。有关Play的this插件的更多信息,请参阅SBT相关答案。,
https://stackoverflow.com/questions/55280058
复制相似问题