plugins { kotlin("jvm") kotlin("plugin.spring") kotlin("plugin.jpa") id("org.springframework.boot") id("io.spring.dependency-management") } dependencies { implementation(project(":common")) implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-actuator") implementation("org.springframework.boot:spring-boot-starter-data-jpa") implementation("org.flywaydb:flyway-core") // DB 스키마 형상관리(단일 출처) implementation("org.flywaydb:flyway-database-postgresql") // Flyway 10 PostgreSQL 모듈 implementation("org.springframework.security:spring-security-crypto") // BCrypt(관리자 비번 변경) implementation("com.fasterxml.jackson.module:jackson-module-kotlin") implementation("org.jetbrains.kotlin:kotlin-reflect") runtimeOnly("org.postgresql:postgresql") testImplementation("org.springframework.boot:spring-boot-starter-test") testRuntimeOnly("org.junit.platform:junit-platform-launcher") }