<@U0BUH9FRD> I mean that current 2.0.0.M7 bom cont...
# spring
l
@sdeleuze I mean that current 2.0.0.M7 bom contains 1.1.61 version of kotlin and it is affect to implicit dependencies, does it will be upgraded to 1.2.20? my build.gradle.kts:
Copy code
...
buildscript {
    repositories {
        maven("<https://repo.spring.io/milestone>")
    }

    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M7")
    }
}

apply {
    plugin("org.springframework.boot")
}

plugins {
    val kotlinVersion = "1.2.20"
    kotlin("jvm") version kotlinVersion
    kotlin("plugin.spring") version kotlinVersion
    kotlin("plugin.jpa") version kotlinVersion
    id("io.spring.dependency-management") version "1.0.4.RELEASE"
}
...
repositories {
    mavenCentral()
    jcenter()
    maven("<https://repo.spring.io/milestone>")
}

dependencies {
    compile(kotlin("stdlib-jdk8"))
    compile(kotlin("stdlib"))
    compile(kotlin("stdlib-jre7"))
    compile(kotlin("stdlib-jre8"))
    compile(kotlin("reflect"))
...
}
without explicit declaration
Copy code
compile(kotlin("stdlib"))
compile(kotlin("stdlib-jre7"))
it will be at 1.1.61 version