chore: put on the clown nose

This commit is contained in:
Harsh Shandilya 2025-06-26 20:41:43 +05:30
parent 73ff9e6711
commit a2c447d8f8

View file

@ -31,6 +31,8 @@ class KotlinCommonPlugin : Plugin<Project> {
compilerOptions { compilerOptions {
allWarningsAsErrors.set(project.providers.environmentVariable("CI").isPresent) allWarningsAsErrors.set(project.providers.environmentVariable("CI").isPresent)
freeCompilerArgs.addAll(ADDITIONAL_COMPILER_ARGS) 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) languageVersion.set(KotlinVersion.KOTLIN_1_9)
} }
} }