Skip to content

Commit 3554ed6

Browse files
committed
Bump version constraints
1 parent 4c1af33 commit 3554ed6

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

build.gradle.kts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
implementation("org.slf4j:slf4j-api") {
2222
version {
2323
strictly("[1.7,3)")
24-
prefer("2.0.3")
24+
prefer("2.0.5")
2525
}
2626
}
2727
listOf(
@@ -34,7 +34,7 @@ dependencies {
3434
implementation(it) {
3535
version {
3636
strictly("[1.5,1.8)")
37-
prefer("1.7.21")
37+
prefer("1.7.22")
3838
}
3939
}
4040
}
@@ -105,11 +105,16 @@ configurations.all {
105105
}
106106

107107
java {
108-
sourceCompatibility = JavaVersion.VERSION_1_8
109-
targetCompatibility = JavaVersion.VERSION_1_8
108+
toolchain {
109+
languageVersion.set(JavaLanguageVersion.of(8))
110+
}
110111
}
111112

112113
tasks {
114+
withType<JavaCompile> {
115+
options.encoding = "UTF-8"
116+
}
117+
113118
withType<KotlinCompile> {
114119
kotlinOptions.jvmTarget = "1.8"
115120
}

0 commit comments

Comments
 (0)