2026-05-30 21:18:35 +09:00
|
|
|
plugins {
|
|
|
|
|
id 'java'
|
|
|
|
|
id 'org.springframework.boot' version '3.5.14'
|
|
|
|
|
id 'io.spring.dependency-management' version '1.1.7'
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-31 15:43:09 +09:00
|
|
|
group = 'com.sb'
|
2026-05-30 21:18:35 +09:00
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
|
|
|
|
|
|
java {
|
|
|
|
|
toolchain {
|
|
|
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
|
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.5'
|
2026-05-31 15:43:09 +09:00
|
|
|
// 비밀번호 BCrypt 해싱 (전체 Spring Security 미도입, crypto 모듈만 사용)
|
|
|
|
|
implementation 'org.springframework.security:spring-security-crypto'
|
2026-07-04 17:01:31 +09:00
|
|
|
// Apple 로그인 ID 토큰(JWT) 서명 검증 — Apple JWKS(공개키) 기반
|
|
|
|
|
implementation 'com.nimbusds:nimbus-jose-jwt:9.40'
|
2026-05-30 21:18:35 +09:00
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
|
|
|
runtimeOnly 'org.mariadb.jdbc:mariadb-java-client'
|
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
|
|
|
testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:3.0.5'
|
|
|
|
|
testCompileOnly 'org.projectlombok:lombok'
|
|
|
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
|
|
|
testAnnotationProcessor 'org.projectlombok:lombok'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
|
useJUnitPlatform()
|
|
|
|
|
}
|