Sealed classes:
+ PollType
+ Description:
+ Describes the type of a poll
+ BackgroundFill
+ Description:
+ Describes a fill of a background
UserType
Description:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.opentable.db.postgres.embedded.* | |
import org.flywaydb.core.* | |
import org.jooq.codegen.* | |
import org.redundent.kotlin.xml.* | |
import dev.whyoleg.kamp.dependency.classifier.* | |
kampJvmCommon { | |
plugins(Plugins.flyway) | |
source { | |
main { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.opentable.db.postgres.embedded.* | |
import org.flywaydb.core.* | |
import org.jooq.codegen.* | |
tasks.named("compileKotlin") { | |
doFirst { | |
//create embedded postgresql | |
EmbeddedPostgres.builder().setPort(5400).start().use { | |
//migrate embedded posrtgresql | |
Flyway.configure() |