gildor
07/28/2018, 5:29 PMflyway {
//some config
}
But your problem is that you applied the plugin, but configure it on a separate script which doesn’t have access to plugins applied on the root build.gradlex80486
07/28/2018, 5:46 PM.kts
file only have access to its own plugins { ... }
block...I guess I remember you (and/or others) stating that here several times.gildor
07/28/2018, 5:50 PMx80486
07/28/2018, 5:53 PMgildor
07/28/2018, 5:55 PMx80486
07/28/2018, 5:57 PMgildor
07/28/2018, 6:00 PMx80486
07/28/2018, 7:13 PMdatabase.gradle.kts
it complains about `Unresolved reference: flyway`:
plugins {
id("org.flywaydb.flyway") version "5.1.4"
}
//apply(plugin = "org.flywaydb.flyway")
dependencies {
"compile"("org.flywaydb:flyway-core")
}
flyway { }
gildor
07/29/2018, 3:51 AM