documentation/Reference/Configuration/Flyway Namespace/Flyway Offline Permit Path Setting.md
This specifies the path to the Flyway offline license permit used to authenticate Enterprise features. Please see the License permit page for more information on how to obtain one.
String
<i>none</i>
Not needed in conjunction with Flyway Desktop as Flyway Desktop will handle licensing.
./flyway -offlinePermitPath="path_to_offline_permit"
[flyway]
offlinePermitPath = "path_to_offline_permit"
FLYWAY_OFFLINE_PERMIT_PATH=path_to_offline_permit
<configuration>
<pluginConfiguration>
<offlinePermitPath>path_to_offline_permit</offlinePermitPath>
</pluginConfiguration>
</configuration>
Flyway flyway = Flyway.configure().load();
flyway.getConfigurationExtension(OfflinePermitConfigurationExtension.class)
.setOfflinePermitPath("path_to_offline_permit");