Skip to content

Commit e453ad9

Browse files
committed
fixup! fixup! tiny fixes for kotlin 2.2 in gradle plugin
1 parent b80bde3 commit e453ad9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

plugins/dataframe-gradle-plugin/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ dependencies {
3131
testImplementation(libs.kotestAssertions)
3232
testImplementation(libs.android.gradle.api)
3333
testImplementation(libs.android.gradle)
34+
testImplementation(libs.kotlin.gradle.plugin)
3435
testImplementation(libs.ktor.server.netty)
3536
testImplementation(libs.h2db)
3637
testImplementation(gradleApi())

plugins/dataframe-gradle-plugin/src/main/kotlin/org/jetbrains/dataframe/gradle/SchemaGeneratorPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class SchemaGeneratorPlugin : Plugin<Project> {
4545
tasks.withType(KspTaskJvm::class.java).configureEach {
4646
dependsOn(generateAll)
4747
}
48-
tasks.withType<KotlinCompile> {
48+
tasks.withType(KotlinCompile::class.java).configureEach {
4949
dependsOn(generateAll)
5050
}
5151
}

0 commit comments

Comments
 (0)