当 project/build.properties 中的 sbt.version 为 1.2.8 时,fly way sbt 不工作
Fly way sbt not working when sbt.version in project/build.properties is 1.2.8
Fly way sbt 在 project/build.properties 中的 sbt.version 为 1.2.8 时不工作,但在 project/build.properties 中的 sbt.version 为 0.13.17 时工作正常.
请在下面找到 github link 的简化项目来演示该问题。
https://github.com/moglideveloper/FlyWaySbtCheck
谢谢。
发生这种情况是因为您正在使用的(旧)flyway-sbt 插件是为 SBT 0 构建的。13.x 仅。
看看新的 flyway-sbt 网站:https://github.com/flyway/flyway-sbt
如果您想将 flyway 与 SBT 1.x 结合使用,请在 plugin.sbt
中使用 addSbtPlugin("io.github.davidmweber" % "flyway-sbt" % "6.2.0")
。
Fly way sbt 在 project/build.properties 中的 sbt.version 为 1.2.8 时不工作,但在 project/build.properties 中的 sbt.version 为 0.13.17 时工作正常.
请在下面找到 github link 的简化项目来演示该问题。
https://github.com/moglideveloper/FlyWaySbtCheck
谢谢。
发生这种情况是因为您正在使用的(旧)flyway-sbt 插件是为 SBT 0 构建的。13.x 仅。
看看新的 flyway-sbt 网站:https://github.com/flyway/flyway-sbt
如果您想将 flyway 与 SBT 1.x 结合使用,请在 plugin.sbt
中使用 addSbtPlugin("io.github.davidmweber" % "flyway-sbt" % "6.2.0")
。