edenman
07/09/2020, 11:11 PMPlugin [id: 'org.jetbrains.kotlin.plugin.serialization', version: '1.4-M3'] was not found in any of the following sources:
…i added maven ("<https://dl.bintray.com/kotlin/kotlin-eap>")
to my repositories
but still no luck, anybody know how to fix?edenman
07/09/2020, 11:12 PM* What went wrong:
Plugin [id: 'org.jetbrains.kotlin.plugin.serialization', version: '1.4-M3'] was not found in any of the following sources:
- Gradle Core Plugins (plugin is not in 'org.gradle' namespace)
- Plugin Repositories (could not resolve plugin artifact 'org.jetbrains.kotlin.plugin.serialization:org.jetbrains.kotlin.plugin.serialization.gradle.plugin:1.4-M3')
Searched in the following repositories:
Gradle Central Plugin Repository
edenman
07/09/2020, 11:12 PMchristophsturm
07/10/2020, 6:44 AMgradle.settings.kts
christophsturm
07/10/2020, 6:45 AMpluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
}
}
edenman
07/11/2020, 3:15 AMedenman
07/11/2020, 3:16 AMpluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven { url "<https://dl.bintray.com/kotlin/kotlin-eap>" }
}
}
edenman
07/11/2020, 3:16 AM