https://kotlinlang.org logo
#announcements
Title
# announcements
m

marschwar

10/25/2019, 1:02 PM
We are suddenly experiencing a version problem. After emptying the gradle cache the build fails without changing anything else.
Copy code
> Could not resolve all files for configuration ':api:testCompileClasspath'.
   > Could not find org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60-eap-76.
     Required by:
         project :api > org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2-1.3.60-eap-76
   > Could not find org.jetbrains.kotlin:kotlin-stdlib-common:1.3.60-eap-76.
     Required by:
         project :api > org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.50 > org.jetbrains.kotlin:kotlin-stdlib:1.3.50
         project :api > org.jetbrains.kotlin:kotlin-test:1.3.50 > org.jetbrains.kotlin:kotlin-test-common:1.3.50
         project :api > org.jetbrains.kotlin:kotlin-test-junit5:1.3.50 > org.jetbrains.kotlin:kotlin-test-annotations-common:1.3.50
This is in the gradle file.
Copy code
plugins {
    id 'org.springframework.boot' version '2.1.8.RELEASE'
    id 'org.jetbrains.kotlin.jvm' version '1.3.50'
    id "org.jetbrains.kotlin.plugin.spring" version "1.3.50"
}

allprojects {

    apply plugin: 'kotlin'
    apply plugin: 'io.spring.dependency-management'
    apply plugin: 'kotlin-spring'

    repositories {
        mavenCentral()
        jcenter()
    }
}
Is anyone else experiencing this? Any suggestions?
s

spand

10/25/2019, 1:03 PM
Looks like you use eap versions.. Dont you need to have bintray in repositories for that ?
m

marschwar

10/25/2019, 1:06 PM
Thank you for the pointer. I removed jCenter() and this does the trick.
4 Views