|
|
|
@ -28,6 +28,7 @@ import org.springframework.util.Assert;
|
|
|
|
|
* Configuration properties to configure {@link SpringLiquibase}.
|
|
|
|
|
*
|
|
|
|
|
* @author Marcel Overdijk
|
|
|
|
|
* @author Eddú Meléndez
|
|
|
|
|
* @since 1.1.0
|
|
|
|
|
*/
|
|
|
|
|
@ConfigurationProperties(prefix = "spring.liquibase", ignoreUnknownFields = false)
|
|
|
|
@ -114,6 +115,11 @@ public class LiquibaseProperties {
|
|
|
|
|
*/
|
|
|
|
|
private boolean testRollbackOnUpdate;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Name of the tag.
|
|
|
|
|
*/
|
|
|
|
|
private String tag;
|
|
|
|
|
|
|
|
|
|
public String getChangeLog() {
|
|
|
|
|
return this.changeLog;
|
|
|
|
|
}
|
|
|
|
@ -243,4 +249,12 @@ public class LiquibaseProperties {
|
|
|
|
|
this.testRollbackOnUpdate = testRollbackOnUpdate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getTag() {
|
|
|
|
|
return this.tag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setTag(String tag) {
|
|
|
|
|
this.tag = tag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|