trying to use the new 1.4-M3 but getting this erro...
# serialization
e
trying to use the new 1.4-M3 but getting this error
Plugin [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?
Copy code
* 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
looks like it’s not actually looking in the repo i specified 😕
c
add it to
gradle.settings.kts
Copy code
pluginManagement {
    repositories {
        mavenCentral()
        gradlePluginPortal()
        maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
    }
}
1
e
thank you! had to tweak slightly for my old-school settings.gradle but worked great
in case anybody else comes across this and also has a settings.gradle:
Copy code
pluginManagement {
    repositories {
        mavenCentral()
        gradlePluginPortal()
        maven { url "<https://dl.bintray.com/kotlin/kotlin-eap>" }
    }
}
(has to be at the top of the file)