|
|
|
@ -1,6 +1,6 @@
|
|
|
|
plugins {
|
|
|
|
plugins {
|
|
|
|
// Spring Boot
|
|
|
|
// Spring Boot
|
|
|
|
id("org.springframework.boot") version "3.5.3"
|
|
|
|
id("org.springframework.boot") version "3.5.6"
|
|
|
|
// Spring 의존성 관리(BOM)
|
|
|
|
// Spring 의존성 관리(BOM)
|
|
|
|
id("io.spring.dependency-management") version "1.1.7"
|
|
|
|
id("io.spring.dependency-management") version "1.1.7"
|
|
|
|
|
|
|
|
|
|
|
|
@ -47,24 +47,25 @@ dependencies {
|
|
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.13")
|
|
|
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.13")
|
|
|
|
|
|
|
|
|
|
|
|
// MariaDB 드라이버
|
|
|
|
// MariaDB 드라이버
|
|
|
|
runtimeOnly("org.mariadb.jdbc:mariadb-java-client:3.1.4")
|
|
|
|
runtimeOnly("org.mariadb.jdbc:mariadb-java-client:3.5.6")
|
|
|
|
|
|
|
|
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
|
|
|
|
|
|
|
|
|
|
implementation("org.jsoup:jsoup:1.16.1")
|
|
|
|
implementation("org.jsoup:jsoup:1.21.1")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.38")
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.42")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.38")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.42")
|
|
|
|
testCompileOnly("org.projectlombok:lombok:1.18.38")
|
|
|
|
testCompileOnly("org.projectlombok:lombok:1.18.42")
|
|
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.38")
|
|
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.42")
|
|
|
|
|
|
|
|
|
|
|
|
// 테스트
|
|
|
|
// 테스트
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
|
|
testImplementation("org.springframework.security:spring-security-test")
|
|
|
|
testImplementation("org.springframework.security:spring-security-test")
|
|
|
|
|
|
|
|
|
|
|
|
//배포시 주석 처리 해야함(sql 디버깅용)
|
|
|
|
if (project.hasProperty("local")) {
|
|
|
|
//implementation("com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.12.0")
|
|
|
|
implementation("com.github.gavlyukovskiy:p6spy-spring-boot-starter:1.12.0")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
implementation("io.minio:minio:8.5.17")
|
|
|
|
implementation("io.minio:minio:8.5.17")
|
|
|
|
|
|
|
|
|
|
|
|
|