Flyway Placeholder Prefix Setting
Published 15 January 2025
Description
The prefix of every placeholder
Type
String
Default
"${"
Usage
Flyway Desktop
This can't be configured via Flyway Desktop, although it will be honoured.
Command-line
./flyway -placeholderPrefix="$$" info
TOML Configuration File
[flyway]
placeholderPrefix = "$$"
Configuration File
flyway.placeholderPrefix=$$
Environment Variable
FLYWAY_PLACEHOLDER_PREFIX=$$
API
Flyway.configure()
.placeholderPrefix("$$")
.load()
Gradle
flyway {
placeholderPrefix = '$$'
}
Maven
<configuration>
<placeholderPrefix>$$</placeholderPrefix>
</configuration>