|
|
|
@ -146,6 +146,11 @@ public class FlywayProperties {
|
|
|
|
|
*/
|
|
|
|
|
private String placeholderSuffix = "}";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Separator of default placeholders.
|
|
|
|
|
*/
|
|
|
|
|
private String placeholderSeparator;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Perform placeholder replacement in migration scripts.
|
|
|
|
|
*/
|
|
|
|
@ -538,6 +543,14 @@ public class FlywayProperties {
|
|
|
|
|
this.placeholderSuffix = placeholderSuffix;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPlaceholderSeparator() {
|
|
|
|
|
return this.placeholderSeparator;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPlaceholderSeparator(String placeholderSeparator) {
|
|
|
|
|
this.placeholderSeparator = placeholderSeparator;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean isPlaceholderReplacement() {
|
|
|
|
|
return this.placeholderReplacement;
|
|
|
|
|
}
|
|
|
|
|