Although I raised issue https://github.com/spring-projects/spring-boot/issues/662 to provide a spring-boot-starter-liquibase-starter module, today I found out that there is already some kind of integration.
Spring Boot already contains https://github.com/spring-projects/spring-boot/tree/master/spring-boot/src/main/java/org/springframework/boot/liquibase with a Spring Boot Liquibase specific service locator. From this code and the Spring Boot reference guide I cannot figure out what Spring Boot is already offering.
However I also found out that when adding Gradle dependency "org.liquibase:liquibase-core" (note without version number) it automatically resolves liquibase 3.1.1 so the Spring Boot specific dependency resolver is doing some 'magic' here.
Anyone knows what kind of integration Spring Boot is offering in terms of Liquibase? I would like to automatically perform migrations (if needed) during startup of the application.