fix: Set the jvmToolChain version for the checks module (#1197)

Prevents compilation errors complaining that the Java JVM version and
Kotlin JVM version are different.
This commit is contained in:
Nik Clayton 2025-01-15 13:05:42 +01:00 committed by GitHub
parent 59ab24a0a6
commit 0bfe1d8733
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,6 +26,10 @@ java {
targetCompatibility = JavaVersion.VERSION_17
}
kotlin {
jvmToolchain(17)
}
tasks.jar {
manifest {
attributes["Lint-Registry-v2"] = "app.pachli.lint.checks.LintRegistry"