From 42687dbdcd1312c10d9c2997f1a8240e4f770079 Mon Sep 17 00:00:00 2001 From: Thilo Schuchort Date: Sat, 19 Dec 2020 00:22:30 +0100 Subject: [PATCH] Update Kotlin --- README.md | 6 +++--- build.gradle | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index cfc67ce8..b6d0d803 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Add dependency to your module's `build.gradle` file: ```Groovy dependencies { // ... - implementation 'com.github.tschuchortdev:kotlin-compile-testing:1.3.1' + implementation 'com.github.tschuchortdev:kotlin-compile-testing:1.3.2' } ``` @@ -108,7 +108,7 @@ Kotlin-Compile-Testing is compatible with all _local_ compiler versions. It does However, if your project or any of its dependencies depend directly on compiler artifacts such as `kotlin-compiler-embeddable` or `kotlin-annotation-processing-embeddable` then they have to be the same version as the one used by Kotlin-Compile-Testing or there will be a transitive dependency conflict. -- Current `kotlin-compiler-embeddable` version: `1.4.10` +- Current `kotlin-compiler-embeddable` version: `1.4.21` Because the internal APIs of the Kotlin compiler often change between versions, we can only support one `kotlin-compiler-embeddable` version at a time. @@ -120,7 +120,7 @@ To test KSP processors, you need to use the KSP dependency: ```Groovy dependencies { - implementation 'com.github.tschuchortdev:kotlin-compile-testing-ksp:1.3.1' + implementation 'com.github.tschuchortdev:kotlin-compile-testing-ksp:1.3.2' } ``` diff --git a/build.gradle b/build.gradle index 7d777e08..cb690b4e 100644 --- a/build.gradle +++ b/build.gradle @@ -29,8 +29,6 @@ allprojects { group 'com.github.tschuchortdev' buildscript { - ext.kotlin_version = '1.4.10' - repositories { mavenCentral() jcenter()