File tree Expand file tree Collapse file tree 5 files changed +10
-13
lines changed
Expand file tree Collapse file tree 5 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -20,9 +20,7 @@ plugins {
2020 alias(libs.plugins.kotlin.android) apply false
2121 alias(libs.plugins.kotlin.multiplatform) apply false
2222 alias(libs.plugins.kotlin.jvm) apply false
23- // alias(libs.plugins.kotlin.jvm.spring7) apply false
2423 alias(libs.plugins.kotlin.spring) apply false
25- // alias(libs.plugins.kotlin.spring7) apply false
2624 alias(libs.plugins.buildconfig) apply false
2725 // dokka is required by gradle-maven-publish-plugin.
2826 alias(libs.plugins.dokka) apply false
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ android {
2727
2828 kotlin {
2929 compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_1_8
30- compilerOptions.languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_8
31- compilerOptions.apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_8
30+ compilerOptions.languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
31+ compilerOptions.apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
3232 }
3333
3434 testOptions {
Original file line number Diff line number Diff line change @@ -35,8 +35,8 @@ android {
3535
3636 kotlin {
3737 compilerOptions.jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_1_8
38- compilerOptions.languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_8
39- compilerOptions.apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_8
38+ compilerOptions.languageVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
39+ compilerOptions.apiVersion = org.jetbrains.kotlin.gradle.dsl.KotlinVersion .KOTLIN_1_9
4040 }
4141
4242 testOptions {
Original file line number Diff line number Diff line change @@ -21,16 +21,16 @@ kotlin {
2121 androidTarget {
2222 compilerOptions {
2323 jvmTarget.set(JvmTarget .JVM_1_8 )
24- apiVersion.set(KotlinVersion .KOTLIN_1_8 )
25- languageVersion.set(KotlinVersion .KOTLIN_1_8 )
24+ apiVersion.set(KotlinVersion .KOTLIN_1_9 )
25+ languageVersion.set(KotlinVersion .KOTLIN_1_9 )
2626 }
2727 publishLibraryVariants(" release" )
2828 }
2929 jvm(" desktop" ) {
3030 compilerOptions {
3131 jvmTarget.set(JvmTarget .JVM_1_8 )
32- apiVersion.set(KotlinVersion .KOTLIN_1_8 )
33- languageVersion.set(KotlinVersion .KOTLIN_1_8 )
32+ apiVersion.set(KotlinVersion .KOTLIN_1_9 )
33+ languageVersion.set(KotlinVersion .KOTLIN_1_9 )
3434 }
3535 }
3636
@@ -47,8 +47,8 @@ kotlin {
4747 sourceSets {
4848 val commonMain by getting {
4949 compilerOptions {
50- apiVersion.set(KotlinVersion .KOTLIN_1_8 )
51- languageVersion.set(KotlinVersion .KOTLIN_1_8 )
50+ apiVersion.set(KotlinVersion .KOTLIN_1_9 )
51+ languageVersion.set(KotlinVersion .KOTLIN_1_9 )
5252 }
5353 }
5454 val androidMain by getting {
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import org.springframework.boot.gradle.plugin.SpringBootPlugin
55plugins {
66 `java- library`
77 id(" io.sentry.javadoc" )
8- // alias(libs.plugins.kotlin.jvm)
98 jacoco
109 alias(libs.plugins.kotlin.jvm)
1110 alias(libs.plugins.kotlin.spring)
You can’t perform that action at this time.
0 commit comments