Your Flyway license key (FL01...
) when using Flyway Teams. This should be 516 alpha numeric characters, beginning with FL
.
Not yet a Flyway Teams Edition customer? Request your Flyway trial license key to try out Flyway Teams Edition features free for 28 days.
Flyway has different artifacts for Community and Teams edition. Therefore, in order to use Flyway Teams edition, you need to make sure you’re using the correct artifact.
Once you’re using the right artifact, you need to provide the license key in your configuration.
The Flyway command line contains both Community and Teams edition artifacts. Therefore, you only need to provide your license key in your configuration, and Flyway Teams will start automatically. This also works for the Flyway Docker image.
Update your Maven Plugin dependency to use org.flywaydb.enterprise.flyway-maven-plugin
.
See the Flyway Teams Maven plugin entry in Maven Central.
Update your Gradle Plugin dependency to use org.flywaydb.enterprise.flyway
.
See the Flyway Teams Gradle Plugins entry.
Update your Maven dependency to use org.flywaydb.enterprise.flyway-core
.
See the Flyway Teams core artifact entry in Maven Central.
./flyway -licenseKey="FL01..." info
flyway.licenseKey=FL01...
FLYWAY_LICENSE_KEY=FL01...
Flyway.configure()
.licenseKey("FL01...")
.load()
flyway {
licenseKey = 'FL01...'
}
<configuration>
<licenseKey>FL01...</licenseKey>
</configuration>