apply plugin: 'org.liquibase.gradle'

liquibase {
    activities {
        main {
            changeLogFile 'src/main/database/liquibase/changelog.xml'
            url 'jdbc:postgresql://localhost:5432/portos_protocollazione'
            username 'portos_protocollazione'
            password 'portos_protocollazione'
        }
    }
}