Skip to content

Commit 4353857

Browse files
committed
bump jvmTarget from 11 to 17
1 parent c68b16c commit 4353857

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ version = project.property("version") as String
2828
java {
2929
withSourcesJar()
3030
withJavadocJar()
31-
sourceCompatibility = JavaVersion.VERSION_11
31+
sourceCompatibility = JavaVersion.VERSION_17
3232
}
3333

3434
val aar by configurations.creating
@@ -62,12 +62,12 @@ tasks {
6262
compileKotlin {
6363
dependsOn(extractClasses)
6464
kotlinOptions {
65-
jvmTarget = JavaVersion.VERSION_11.toString()
65+
jvmTarget = JavaVersion.VERSION_17.toString()
6666
}
6767
}
6868
compileTestKotlin {
6969
kotlinOptions {
70-
jvmTarget = JavaVersion.VERSION_11.toString()
70+
jvmTarget = JavaVersion.VERSION_17.toString()
7171
}
7272
}
7373
withType<Sign>().configureEach {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.4.0
1+
version=0.4.1

0 commit comments

Comments
 (0)