Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 823 Bytes

index.md

File metadata and controls

27 lines (18 loc) · 823 Bytes
layout
default

Flyway-sbt alternative Maven repo

This hosts releases of the flyway-sbt plugin for the impatient. The maintainers will publish snapshots and releases here first. The plugins should make their way to the official site. Use this repo by adding the following to your project/plugin.sbt file:

resolvers += "Flyway" at "https://davidmweber.github.io/flyway-sbt.repo"

addSbtPlugin("org.flywaydb" % "flyway-sbt" % "4.2.0")

If you are interested in testing a version that does not automatically trigger other tasks, use the following configuration:

addSbtPlugin("org.flywaydb" % "flyway-sbt" % "4.2.1-SNAPSHOT")

Note that this requires an explicit enablePlugins(FlywayPlugin) to be added to your build file.