30 lines
610 B
Groovy
30 lines
610 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '3.5.7' apply false
|
|
id 'io.spring.dependency-management' version '1.1.7' apply false
|
|
}
|
|
|
|
allprojects {
|
|
group = 'com.cd.detection'
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply plugin: 'java'
|
|
apply plugin: 'io.spring.dependency-management'
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(21)
|
|
}
|
|
}
|
|
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom "org.springframework.boot:spring-boot-dependencies:3.5.7"
|
|
}
|
|
}
|
|
} |