From 5509b8929f5750bf607b9a34cfa8210fcab2f45b Mon Sep 17 00:00:00 2001 From: Cosku Acay Date: Sat, 14 Sep 2024 13:46:44 -0700 Subject: [PATCH] Fix build --- compiler/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/build.gradle.kts b/compiler/build.gradle.kts index 69d038ada6..de499630ba 100644 --- a/compiler/build.gradle.kts +++ b/compiler/build.gradle.kts @@ -49,7 +49,7 @@ dependencies { /** Compilation */ jflex { - encoding.set(Charsets.UTF_8.name()) + encoding = Charsets.UTF_8.name() } val compileCup by tasks.registering(CompileCupTask::class) @@ -61,7 +61,7 @@ sourceSets { } tasks.compileKotlin.configure { - dependsOn(tasks.withType()) + dependsOn(tasks.withType()) dependsOn(tasks.withType()) } @@ -76,7 +76,7 @@ tasks.withType().configureEach { // remove if/when Dokka fixes this issue. tasks.withType().configureEach { dependsOn(compileCup) - dependsOn(tasks.withType()) + dependsOn(tasks.withType()) } abstract class CompileCupTask : DefaultTask() {