File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff 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
107107java {
108- sourceCompatibility = JavaVersion .VERSION_1_8
109- targetCompatibility = JavaVersion .VERSION_1_8
108+ toolchain {
109+ languageVersion.set(JavaLanguageVersion .of(8 ))
110+ }
110111}
111112
112113tasks {
114+ withType<JavaCompile > {
115+ options.encoding = " UTF-8"
116+ }
117+
113118 withType<KotlinCompile > {
114119 kotlinOptions.jvmTarget = " 1.8"
115120 }
You can’t perform that action at this time.
0 commit comments