File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
plugins/dataframe-gradle-plugin
src/main/kotlin/org/jetbrains/dataframe/gradle Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ dependencies {
31
31
testImplementation(libs.kotestAssertions)
32
32
testImplementation(libs.android.gradle.api)
33
33
testImplementation(libs.android.gradle)
34
+ testImplementation(libs.kotlin.gradle.plugin)
34
35
testImplementation(libs.ktor.server.netty)
35
36
testImplementation(libs.h2db)
36
37
testImplementation(gradleApi())
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class SchemaGeneratorPlugin : Plugin<Project> {
45
45
tasks.withType(KspTaskJvm ::class .java).configureEach {
46
46
dependsOn(generateAll)
47
47
}
48
- tasks.withType< KotlinCompile > {
48
+ tasks.withType( KotlinCompile :: class .java).configureEach {
49
49
dependsOn(generateAll)
50
50
}
51
51
}
You can’t perform that action at this time.
0 commit comments