샘플코드 추가

This commit is contained in:
2026-04-09 17:43:36 +09:00
parent 9b9fb24028
commit 9cd5ff309f
33 changed files with 942 additions and 46 deletions

View File

@@ -1,26 +1,30 @@
plugins {
id 'java'
id 'io.spring.dependency-management' version '1.1.7' apply false
id 'org.springframework.boot' version '3.5.7' apply false
id 'io.spring.dependency-management' version '1.1.7' apply false
}
group = 'com.cd.detection'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
subprojects {
apply plugin: 'java'
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"
}
}
}