Commit 628023c 1 parent fd60a9a commit 628023c Copy full SHA for 628023c
File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ kotlin {
40
40
}
41
41
}
42
42
43
- tasks.withType<KotlinCompile > {
43
+ tasks.withType< org.jetbrains.kotlin.gradle.tasks. KotlinCompile > {
44
44
kotlinOptions.jvmTarget = " 1.8"
45
45
}
46
46
@@ -57,7 +57,7 @@ tasks {
57
57
58
58
task<Exec >(" compileThrift" ) {
59
59
val thriftBin = if (hasProperty(" thrift.compiler" )) {
60
- file(property(" thrift.compiler" ))
60
+ file(property(" thrift.compiler" )!! )
61
61
} else {
62
62
project.rootDir.resolve(" ../../compiler/cpp/thrift" )
63
63
}
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ tasks {
70
70
71
71
task<Exec >(" compileThrift" ) {
72
72
val thriftBin = if (hasProperty(" thrift.compiler" )) {
73
- file(property(" thrift.compiler" ))
73
+ file(property(" thrift.compiler" )!! )
74
74
} else {
75
75
project.rootDir.resolve(" ../../compiler/cpp/thrift" )
76
76
}
Original file line number Diff line number Diff line change 18
18
*/
19
19
pluginManagement {
20
20
plugins {
21
- kotlin(" jvm" ) version " 1.8.21 "
21
+ kotlin(" jvm" ) version " 1.8.22 "
22
22
id(" com.ncorti.ktfmt.gradle" ) version " 0.12.0"
23
23
}
24
24
}
You can’t perform that action at this time.
0 commit comments