I want to start use liquibase in my Spring Boot app. Now I already have db configuration, something like:
abc.datasource.jdbc-url=
abc.datasource.username=
abc.datasource.password=
For liquibase usage I also added the parameters to the same file with a same values:
spring.liquibase.url=
spring.liquibase.user=
spring.liquibase.password=
The question is: is it possible to configure it somehow to avoid duplication of the configuration values?