diff --git a/Readme.md b/Readme.md index c7274ff..5218435 100644 --- a/Readme.md +++ b/Readme.md @@ -4,7 +4,7 @@ [![jCenter](https://img.shields.io/badge/Apache-2.0-green.svg )](https://github.com/Foso/KotlinReactNativeMpp/blob/master/LICENSE) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) -[![jCenter](https://img.shields.io/badge/Kotlin-1.8.20-green.svg +[![jCenter](https://img.shields.io/badge/Kotlin-1.8.22-green.svg )](https://github.com/Foso/Sheasy/blob/master/LICENSE) @@ -26,7 +26,7 @@ This is an example project that shows how to create a Kotlin Compiler Plugin. At ## Usage > :information_source: Please be aware that the Kotlin Compiler still doesn’t have any stable API and there is no -> backwards compatibility guaranteed. Kotlin versions above 1.8.20 can have a totally different API. +> backwards compatibility guaranteed. Kotlin versions above 1.8.22 can have a totally different API. * Inside the project folder run `./gradlew clean build` diff --git a/build.gradle.kts b/build.gradle.kts index d7f2f2f..eaec8e3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,20 +8,17 @@ buildscript { dependencies { classpath("com.vanniktech:gradle-maven-publish-plugin:0.23.1") - classpath("de.jensklingenberg:gradle-plugin:1.0.0") } } plugins { - id("org.jetbrains.kotlin.multiplatform") version "1.8.20" apply false + id("org.jetbrains.kotlin.multiplatform") version "1.8.22" apply false } apply(plugin = "compiler.gradleplugin.helloworld") System.setProperty("kotlin.compiler.execution.strategy", "in-process") // For debugging - - allprojects { repositories { mavenLocal() diff --git a/compiler-plugin/build.gradle.kts b/compiler-plugin/build.gradle.kts index 3493a73..834a72e 100644 --- a/compiler-plugin/build.gradle.kts +++ b/compiler-plugin/build.gradle.kts @@ -2,8 +2,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { - kotlin("jvm") version("1.8.20") - kotlin("kapt") version("1.8.20") + kotlin("jvm") version("1.8.22") + kotlin("kapt") version("1.8.22") id("com.vanniktech.maven.publish") version("0.23.1") `maven-publish` signing @@ -30,7 +30,7 @@ val autoService = "1.0.1" dependencies { compileOnly("com.google.auto.service:auto-service:$autoService") kapt("com.google.auto.service:auto-service:$autoService") - compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.20") + compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.22") testImplementation("dev.zacsweers.kctfork:core:0.2.1") testImplementation("junit:junit:4.13.2") testImplementation("com.google.truth:truth:1.1.3") diff --git a/gradle-plugin/build.gradle.kts b/gradle-plugin/build.gradle.kts index 94520e4..bd69f69 100644 --- a/gradle-plugin/build.gradle.kts +++ b/gradle-plugin/build.gradle.kts @@ -1,6 +1,6 @@ plugins { - kotlin("jvm") version("1.8.20") - kotlin("kapt") version("1.8.20") + kotlin("jvm") version("1.8.22") + kotlin("kapt") version("1.8.22") id("java-gradle-plugin") `maven-publish` } @@ -19,7 +19,7 @@ allprojects { } } dependencies { - implementation("org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.20") + implementation("org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.22") } gradlePlugin { diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 633b80a..28f19eb 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("org.jetbrains.kotlin.multiplatform") version "1.8.20" + id("org.jetbrains.kotlin.multiplatform") version "1.8.22" } apply(plugin = "compiler.gradleplugin.helloworld")