File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 4
4
[ ![ jCenter] (https://img.shields.io/badge/Apache-2.0-green.svg
5
5
)] ( https://github.com/Foso/KotlinReactNativeMpp/blob/master/LICENSE )
6
6
[ ![ PRs Welcome] ( https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square )] ( http://makeapullrequest.com )
7
- [ ![ jCenter] (https://img.shields.io/badge/Kotlin-1.8.10 -green.svg
7
+ [ ![ jCenter] (https://img.shields.io/badge/Kotlin-1.8.20 -green.svg
8
8
)] ( https://github.com/Foso/Sheasy/blob/master/LICENSE )
9
9
10
10
@@ -26,7 +26,7 @@ This is an example project that shows how to create a Kotlin Compiler Plugin. At
26
26
## Usage
27
27
28
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.8.10 can have a totally different API.
29
+ > backwards compatibility guaranteed. Kotlin versions above 1.8.20 can have a totally different API.
30
30
31
31
* Inside the project folder run ` ./gradlew clean build `
32
32
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ buildscript {
13
13
}
14
14
}
15
15
plugins {
16
- id(" org.jetbrains.kotlin.multiplatform" ) version " 1.8.10 " apply false
16
+ id(" org.jetbrains.kotlin.multiplatform" ) version " 1.8.20 " apply false
17
17
}
18
18
apply (plugin = " compiler.gradleplugin.helloworld" )
19
19
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
2
2
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
3
3
4
4
plugins {
5
- kotlin(" jvm" ) version(" 1.8.10 " )
6
- kotlin(" kapt" ) version(" 1.8.10 " )
5
+ kotlin(" jvm" ) version(" 1.8.20 " )
6
+ kotlin(" kapt" ) version(" 1.8.20 " )
7
7
id(" com.vanniktech.maven.publish" ) version(" 0.23.1" )
8
8
`maven- publish`
9
9
signing
@@ -30,7 +30,7 @@ val autoService = "1.0.1"
30
30
dependencies {
31
31
compileOnly(" com.google.auto.service:auto-service:$autoService " )
32
32
kapt(" com.google.auto.service:auto-service:$autoService " )
33
- compileOnly(" org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.10 " )
33
+ compileOnly(" org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.20 " )
34
34
testImplementation(" dev.zacsweers.kctfork:core:0.2.1" )
35
35
testImplementation(" junit:junit:4.13.2" )
36
36
testImplementation(" com.google.truth:truth:1.1.3" )
Original file line number Diff line number Diff line change 1
1
plugins {
2
- kotlin(" jvm" ) version(" 1.8.10 " )
3
- kotlin(" kapt" ) version(" 1.8.10 " )
2
+ kotlin(" jvm" ) version(" 1.8.20 " )
3
+ kotlin(" kapt" ) version(" 1.8.20 " )
4
4
id(" java-gradle-plugin" )
5
5
`maven- publish`
6
6
}
@@ -19,7 +19,7 @@ allprojects {
19
19
}
20
20
}
21
21
dependencies {
22
- implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.10 " )
22
+ implementation(" org.jetbrains.kotlin:kotlin-gradle-plugin-api:1.8.20 " )
23
23
}
24
24
25
25
gradlePlugin {
Original file line number Diff line number Diff line change 1
1
plugins {
2
- id(" org.jetbrains.kotlin.multiplatform" ) version " 1.8.10 "
2
+ id(" org.jetbrains.kotlin.multiplatform" ) version " 1.8.20 "
3
3
}
4
4
apply (plugin = " compiler.gradleplugin.helloworld" )
5
5
You can’t perform that action at this time.
0 commit comments