Changed version to the newest 0.9.3 but gradle can...
# kotlin-native
j
Changed version to the newest 0.9.3 but gradle can’t find it. Anything I’m doing wrong?
Copy code
Could not resolve all artifacts for configuration ':greeting:classpath'.
   > Could not find org.jetbrains.kotlin:kotlin-native-gradle-plugin:0.9.3.
     Searched in the following locations:
       - <https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.module>
       - <https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.pom>
       - <https://dl.bintray.com/jetbrains/kotlin-native-dependencies/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.module>
       - <https://dl.bintray.com/jetbrains/kotlin-native-dependencies/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.pom>
       - <http://dl.bintray.com/kotlin/kotlin-eap/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.module>
       - <http://dl.bintray.com/kotlin/kotlin-eap/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.pom>
     Required by:
         project :greeting
Copy code
buildscript {
    ext.kotlin_version = '1.2.61'

    repositories {
        jcenter()
        maven { url "<https://dl.bintray.com/jetbrains/kotlin-native-dependencies>" }
        maven { url "<http://dl.bintray.com/kotlin/kotlin-eap>" }
    }

    dependencies {
        classpath "org.jetbrains.kotlin:kotlin-native-gradle-plugin:0.9.3"

    }
}
k
(deleted)
o
Try 1.3-rc-116
k
ops, i was wrong about 0.9.4, it is not exist at all
j
while waiting for an answer I’ve found that mpp example was updated some time ago with completely new folder structure, less gradle files and I can’t even find where kotlin-native version is set 🤦 https://github.com/JetBrains/kotlin-mpp-example Can anybody point me to the newest example project from where it’s better to start?
o
mpp plugin has common frontend-based versioning without individual native versions
j
so is this the best way to start a new multiplatfrom project now?
k
1.3.0-rc-116 would be correct version.