Skip to content
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.

Could not find org.jetbrains.kotlin:kotlin-runtime:1.3.0 #160

Open
plastiv opened this issue Oct 31, 2018 · 0 comments
Open

Could not find org.jetbrains.kotlin:kotlin-runtime:1.3.0 #160

plastiv opened this issue Oct 31, 2018 · 0 comments

Comments

@plastiv
Copy link
Contributor

plastiv commented Oct 31, 2018

I don't know what happened exactly, but kotlin doesn't publish kotlin-runtime artifact anymore:
https://bintray.com/bintray/jcenter/org.jetbrains.kotlin:kotlin-runtime

So far next workaround works

subprojects { subProject ->
    subProject.configurations.all { configuration ->
        resolutionStrategy.dependencySubstitution {
            // Until Composer moves to Kotlin 1.3 where `kotlin-runtime` was removed
            substitute module('org.jetbrains.kotlin:kotlin-runtime') with module('org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.0')
        }
    }
}

But would be nice to have some guidance on what should be used as a replacement.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant