License Key

License Key

Flyway Community

This is how legacy Flyway licensing is managed to enable features in Flyway.

Flyway V10 brings online authentication - see Flyway Auth

Description

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 to try out Flyway Teams Edition features free for 28 days.

Command line & Docker

There is a single Flyway command line download for all editions. 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.

Maven Plugin

See Maven Goal

Gradle Plugin

See Gradle Task

Java API

See API (Java)

Configuration Reference

Commandline

./flyway -licenseKey="FL01..." info

TOML Configuration File

[flyway]
licenseKey = "FL01..."

Configuration File

flyway.licenseKey=FL01...

Environment Variable

FLYWAY_LICENSE_KEY=FL01...

API

Flyway flyway = Flyway.configure().load();
flyway.getConfigurationExtension(LicensingConfigurationExtension.class)
        .setLicenseKey("FL01...");  

Gradle

flyway {
    pluginConfiguration = [
            licenseKey: 'FL01...'
    ]
}

Maven

<configuration>
    <pluginConfiguration>
        <licenseKey>FL01...</licenseKey>
    </pluginConfiguration>
</configuration>

Didn't find what you were looking for?