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) } }