41 lines
869 B
Plaintext
41 lines
869 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("org.springframework.boot") version "2.4.0" apply false
|
|
id("io.spring.dependency-management") version "1.0.10.RELEASE" apply false
|
|
kotlin("jvm") version "1.4.10" apply false
|
|
kotlin("plugin.spring") version "1.4.10" apply false
|
|
}
|
|
|
|
allprojects {
|
|
group = "com.cubetiqs.modules"
|
|
version = "0.0.1-SNAPSHOT"
|
|
|
|
tasks.withType<JavaCompile> {
|
|
sourceCompatibility = "11"
|
|
targetCompatibility = "11"
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions {
|
|
freeCompilerArgs = listOf("-Xjsr305=strict")
|
|
jvmTarget = "11"
|
|
}
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
apply {
|
|
plugin("io.spring.dependency-management")
|
|
}
|
|
} |