Could somebody help me in <https://stackoverflow.c...
# announcements
a
Could somebody help me in https://stackoverflow.com/q/61389146/11377112. In short i have a dependency which specifies kotlin plugin as:
id 'org.jetbrains.kotlin.jvm' version 1.+
and it fetches 1.4-M1, and that version of kotlin-stdlib-jdk8 dependency is not available, it errors:
Copy code
Could not find org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4-M1.

Possible solution:
 - Declare repository providing the artifact, see the documentation at <https://docs.gradle.org/current/userguide/declaring_repositories.html>
a
@araqnid thanks i solved it myself, like this:
Copy code
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") {
        version {
            strictly "1.3.72"
        }
        because "1.4-M1 is not released"
    }
👍🏻 1
i
Perhaps it would be better to find out who causes your Kotlin plugin dependency to be 1.4-M1. Note that the code compiled the pre-release compiler (e.g. 1.4-M1) cannot be used later with the stable compiler (e.g. 1.4 or 1.3.72).
1