All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavesenterprise.sdk.flyway.starter.FlywaySchemaProperties.kt Maven / Gradle / Ivy

The newest version!
package com.wavesenterprise.sdk.flyway.starter

import org.springframework.boot.autoconfigure.flyway.FlywayProperties
import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.bind.DefaultValue

@ConfigurationProperties(prefix = "spring.flyway")
data class FlywaySchemaProperties(
    @DefaultValue("false")
    val mainAppFirst: Boolean,
    val configurations: Map = mutableMapOf(),
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy