Cicero
12/04/2020, 11:26 PMallprojects {
repositories {
google()
mavenCentral()
jcenter()
maven(url = "<https://dl.bintray.com/ekito/koin>")
maven(url = "<https://kotlin.bintray.com/kotlin-js-wrappers/>")
maven(url = "<https://jitpack.io>")
}
}
Nikky
12/05/2020, 1:01 AMbuildscripts{}
but to actually apply the plugin it needs a extra call
or you tell gradle via settings.gradle.kts
that the specific id it is looking for is a specific maven coordinate (and the repsoitories)
(by default it looks for "$pluginId:$pluginId.plugin.gradle" or so)
then gradle will apply the plugin for you when you request it by id in the plugins block