- All Implemented Interfaces:
- org.springframework.boot.env.EnvironmentPostProcessor
@Order(value=100)
public class FlowableLiquibaseEnvironmentPostProcessor
extends Object
implements org.springframework.boot.env.EnvironmentPostProcessor
When one of the engines that uses liquibase is pulled in with Spring Boot, it pulls the liquibase dependency
and that activates org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration. However,
this leads to issues, when the user doesn't actually use it. Therefore, we must disable it per default. In order
to activate it, users need to set liquibase.enabled=true explicitly.
- Author:
- Filip Hrisafov