23 lines
No EOL
583 B
Kotlin
23 lines
No EOL
583 B
Kotlin
buildscript {
|
|
dependencies {
|
|
constraints {
|
|
classpath("org.apache.logging.log4j:log4j-core") {
|
|
version {
|
|
strictly("[2.17, 3[")
|
|
prefer("2.17.0")
|
|
}
|
|
because("CVE-2021-44228, CVE-2021-45046, CVE-2021-45105: Log4j vulnerable to remote code execution and other critical security vulnerabilities")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
} |