documentation/Reference/Configuration/Flyway Namespace/Flyway License Key Setting.md
{% include redgate.html %}
This parameter is deprecated and will be removed in a future release.
For an overview of ways to license Flyway see Flyway Licensing
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.
String
<i>none</i>
This is not supported by Flyway Desktop.
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.
See [Maven Goal](Usage/Maven Goal)
See [Gradle Task](Usage/Gradle Task)
See [API (Java)](Usage/API Java)
./flyway -licenseKey="FL01..." info
[flyway]
licenseKey = "FL01..."
flyway.licenseKey=FL01...
FLYWAY_LICENSE_KEY=FL01...
Flyway flyway = Flyway.configure().load();
flyway.getConfigurationExtension(LicensingConfigurationExtension.class)
.setLicenseKey("FL01...");
flyway {
pluginConfiguration = [
licenseKey: 'FL01...'
]
}
<configuration>
<pluginConfiguration>
<licenseKey>FL01...</licenseKey>
</pluginConfiguration>
</configuration>