Skip to content

Commit dadb1b7

Browse files
committed
update to Kotlin 1.9.23
1 parent f8adf4f commit dadb1b7

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ This is an example project that shows how to create a Kotlin Compiler Plugin. At
2525

2626
## Usage
2727

28-
> :information_source: Please be aware that the Kotlin Compiler still doesnt have any stable API and there is no
29-
> backwards compatibility guaranteed. Kotlin versions above 1.9.10 can have a totally different API.
28+
> :information_source: Please be aware that the Kotlin Compiler still doesn't have any stable API and there is no
29+
> backwards compatibility guaranteed. Kotlin versions above 1.9.23 can have a totally different API.
3030
3131
* Inside the project folder run `./gradlew clean build`
3232

3333
The plugin is only active when the build cache is changed. This is why you need to run "clean" before building, when you want to see the log output again.
3434

3535
### 👷 Project Structure
36-
* <kbd>lib</kbd> - A Kotlin Multiplatform project which applies a gradle plugin(compiler.plugin.helloworld) whichs triggers the compiler plugin.
36+
* <kbd>lib</kbd> - A Kotlin Multiplatform project which applies a gradle plugin(compiler.plugin.helloworld) which triggers the compiler plugin.
3737
* <kbd>compiler-plugin</kbd> - This module contains the Kotlin Compiler Plugin
3838
* <kbd>gradle-plugin</kbd> - This module contains the gradle plugin which trigger the compiler plugin
3939

compiler-plugin/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
22
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
33

44
plugins {
5-
kotlin("jvm") version("1.9.10")
6-
kotlin("kapt") version("1.9.10")
5+
kotlin("jvm") version("1.9.23")
6+
kotlin("kapt") version("1.9.23")
77
id("com.vanniktech.maven.publish") version("0.23.1")
88
`maven-publish`
99
signing
@@ -19,6 +19,7 @@ allprojects {
1919
google()
2020
}
2121
}
22+
2223
mavenPublishing {
2324
publishToMavenCentral()
2425

@@ -30,7 +31,7 @@ val autoService = "1.0.1"
3031
dependencies {
3132
compileOnly("com.google.auto.service:auto-service:$autoService")
3233
kapt("com.google.auto.service:auto-service:$autoService")
33-
compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.9.10")
34+
compileOnly("org.jetbrains.kotlin:kotlin-compiler-embeddable:1.9.23")
3435
testImplementation("dev.zacsweers.kctfork:core:0.2.1")
3536
testImplementation("junit:junit:4.13.2")
3637
testImplementation("com.google.truth:truth:1.1.3")

0 commit comments

Comments
 (0)