Flyway Skip Default Resolvers Setting
Published 15 January 2025
Description
Whether default built-in resolvers (sql and jdbc) should be skipped. If true
, only custom resolvers are used.
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 -skipDefaultResolvers="true" info
TOML Configuration File
[flyway]
skipDefaultResolvers = true
Configuration File
flyway.skipDefaultResolvers=true
Environment Variable
FLYWAY_SKIP_DEFAULT_RESOLVERS=true
API
Flyway.configure()
.skipDefaultResolvers(true)
.load()
Gradle
flyway {
skipDefaultResolvers = true
}
Maven
<configuration>
<skipDefaultResolvers>true</skipDefaultResolvers>
</configuration>