<@U0BUH9FRD> Do you know if Spring Boot 2.0.0 GA p...
# spring
t
@sdeleuze Do you know if Spring Boot 2.0.0 GA plans is to release with Kotlin 1.2.x or 1.1.6x?
c
1.2
Sébastien mentioned that some time ago. 2.0.0.RC1 will ship already with 1.2
t
perfect thanks!
Copy code
w: Runtime JAR files in the classpath should have the same version. These files were found in the classpath:
    /Users/tiare/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jre8/1.2.0/505f55b9619bbc5f5e26c77427dd24a6a441eef1/kotlin-stdlib-jre8-1.2.0.jar (version 1.2)
    /Users/tiare/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-reflect/1.2.0/4bbda3b5425aa38a9f6960468a29c5ef3e8a28c9/kotlin-reflect-1.2.0.jar (version 1.2)
    /Users/tiare/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib-jre7/1.1.61/59dfce93b1995717338435dd974884007d8e8474/kotlin-stdlib-jre7-1.1.61.jar (version 1.1)
    /Users/tiare/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.1.61/fa7813a26c548c9c412dd2d42fb466cfcd8dcf3c/kotlin-stdlib-1.1.61.jar (version 1.1)
`
c
But, you can start playing with it, my toy project works perfectly with Boot 2.0.0.M7 and Kotlin 1.2
t
Works but only thing is this warning
c
you can force 1.2 by putting
kotlin.version=1.2
in your
gradle.properties
or setting
extra["kotlin.version"] = "1.2"
in
build.gradle.kts
t
hehe thanks! worked
😉 1