You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
754 B
Kotlin
34 lines
754 B
Kotlin
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
id("org.springframework.boot") version "2.7.1" apply false
|
|
id("io.spring.dependency-management") version "1.0.12.RELEASE" apply false
|
|
kotlin("jvm") version "1.7.10" apply false
|
|
kotlin("plugin.spring") version "1.7.10" apply false
|
|
}
|
|
|
|
allprojects {
|
|
group = "com.cubetiqs.modules"
|
|
version = "0.0.1-SNAPSHOT"
|
|
}
|
|
|
|
subprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
apply {
|
|
plugin("io.spring.dependency-management")
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions {
|
|
freeCompilerArgs = listOf("-Xjsr305=strict")
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test> {
|
|
useJUnitPlatform()
|
|
}
|
|
} |