Flyway Oracle SQLPlus Warn Setting
Published 15 January 2025
Description
Whether Flyway should issue a warning instead of an error whenever it encounters an Oracle SQL*Plus statement it doesn't yet support.
Type
Boolean
Default
false
Usage
Flyway Desktop
This can't be set in a config file via Flyway Desktop, although it will be honoured, and it can be configured as an advanced parameter in operations on the Migrations page.
Command-line
./flyway -oracle.sqlplusWarn="true" info
TOML Configuration File
[flyway.oracle]
sqlplusWarn = true
Configuration File
flyway.oracle.sqlplusWarn=true
Environment Variable
FLYWAY_ORACLE_SQLPLUS_WARN=true
API
OracleConfigurationExtension oracleConfigurationExtension = configuration.getPluginRegister().getPlugin(OracleConfigurationExtension.class);
oracleConfigurationExtension.setSqlPlusWarn(true);
Gradle
flyway {
oracleSqlplusWarn = true
}
Maven
<configuration>
<oracleSqlplusWarn>true</oracleSqlplusWarn>
</configuration>