This commit is contained in:
CSKIM
2026-05-07 09:44:53 +09:00
parent ed16fdafe6
commit 348288caeb
607 changed files with 7618 additions and 248 deletions
+2 -6
View File
@@ -1,6 +1,7 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.11'
id 'io.spring.dependency-management' version '1.1.7'
}
group = 'kr.iotdoor'
@@ -22,17 +23,13 @@ ext {
}
dependencies {
implementation platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
runtimeOnly platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
annotationProcessor platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
testImplementation platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES)
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation "org.mybatis.spring.boot:mybatis-spring-boot-starter:${mybatisSpringBootVersion}"
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
@@ -51,7 +48,6 @@ tasks.withType(JavaCompile).configureEach {
}
tasks.named('bootRun') {
// Let bootRun read templates/static resources directly from src/main/resources.
sourceResources sourceSets.main
systemProperty 'spring.devtools.restart.enabled', 'true'
}