From a2c447d8f8702df4d4bd264a52e79cef57632461 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 26 Jun 2025 20:41:43 +0530 Subject: [PATCH] chore: put on the clown nose --- .../main/kotlin/dev/msfjarvis/claw/gradle/KotlinCommonPlugin.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/KotlinCommonPlugin.kt b/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/KotlinCommonPlugin.kt index c6f5c069..04114af9 100644 --- a/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/KotlinCommonPlugin.kt +++ b/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/KotlinCommonPlugin.kt @@ -31,6 +31,8 @@ class KotlinCommonPlugin : Plugin { compilerOptions { allWarningsAsErrors.set(project.providers.environmentVariable("CI").isPresent) freeCompilerArgs.addAll(ADDITIONAL_COMPILER_ARGS) + // This is necessary for Anvil to function, do not be the idiot reverting this + // 3 months later because you forgot about it. languageVersion.set(KotlinVersion.KOTLIN_1_9) } }