spring-web-modules/build.gradle.kts

48 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-05-18 09:50:46 +07:00
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
id("org.springframework.boot") version "2.6.1" apply false
2021-05-18 09:50:46 +07:00
id("io.spring.dependency-management") version "1.0.11.RELEASE" apply false
kotlin("jvm") version "1.6.0" apply false
kotlin("plugin.spring") version "1.6.0" apply false
// kotlin("plugin.jpa") version "1.6.0" apply false
2021-05-18 09:50:46 +07:00
}
allprojects {
2021-12-11 20:33:36 +07:00
// Fixed Zero-Day CVE-2021-44228: https://cubetiq.atlassian.net/browse/CERT-1
2021-12-16 08:50:15 +07:00
// Fixed Zero-Day CVE-2021-45046: https://cubetiq.atlassian.net/browse/CERT-3
ext["log4j2.version"] = "2.16.0"
repositories {
maven("https://m.ctdn.net")
}
2021-05-18 09:50:46 +07:00
group = "com.cubetiqs"
version = "0.0.1-SNAPSHOT"
val javaVersion = "11"
tasks.withType<JavaCompile> {
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}
tasks.withType<KotlinCompile> {
kotlinOptions {
freeCompilerArgs = listOf("-Xjsr305=strict")
2021-05-18 09:50:46 +07:00
jvmTarget = javaVersion
}
}
}
subprojects {
apply {
plugin("io.spring.dependency-management")
}
the<io.spring.gradle.dependencymanagement.dsl.DependencyManagementExtension>().apply {
imports {
mavenBom(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
}
}
}