<@U5RAC8PAQ> commented on <@U0CP8EBRV>’s file <htt...
# gradle
u
@x80486 commented on @Czar’s file https://kotlinlang.slack.com/files/U0CP8EBRV/F8DSURGDR/build_gradle_kts.kt: So, I have this as part of my Gradle (version
4.4
) script:
Copy code
buildscript {
  repositories {
    jcenter()
    mavenCentral()
  }

  dependencies {
    classpath("org.junit.platform:junit-platform-gradle-plugin:1.0.2")
  }
}

plugins {
  id("org.gradle.idea")
  id("org.jetbrains.kotlin.jvm") version "1.1.61"
}

apply {
  plugin("org.junit.platform.gradle.plugin")
}
...and I'm unable to "upgrade" Koltin to
1.2
(just by changing the version number to it). How is that working for you?