Skip to content

Commit 810f976

Browse files
committed
change kotlin 1.8 to 1.9 and some cleanup
1 parent b5f7966 commit 810f976

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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

sentry-android-fragment/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

sentry-android-timber/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

sentry-compose/build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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 {

sentry-spring-boot-4/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import org.springframework.boot.gradle.plugin.SpringBootPlugin
55
plugins {
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)

0 commit comments

Comments
 (0)