I have a spring boot project, and I need to configure Flyway in my application.yml
file.
Does anyone know how to do this with Yaml?
Look into this Flyway doc
spring:
datasource:
driverClassName: ${DRIVER}
url: ${DB_URL}
username: ${DB_USERNAME}
password: ${DB_PASSWORD}
jpa:
show-sql: true
flyway:
enabled: true
validate-on-migrate: true
implementation 'org.flywaydb:flyway-core'