2026-05-09 23:24:19 +09:00
|
|
|
// ga-common: 공통 프레임워크 (라이브러리 모듈 — spring-boot 플러그인 미적용)
|
2026-05-09 21:29:18 +09:00
|
|
|
dependencies {
|
|
|
|
|
api 'org.springframework.boot:spring-boot-starter-web'
|
|
|
|
|
api 'org.springframework.boot:spring-boot-starter-aop'
|
|
|
|
|
api 'org.springframework.boot:spring-boot-starter-security'
|
|
|
|
|
api 'org.springframework.boot:spring-boot-starter-validation'
|
|
|
|
|
api 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
|
|
|
api 'org.springframework.boot:spring-boot-starter-cache'
|
|
|
|
|
|
|
|
|
|
// MyBatis
|
|
|
|
|
api 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
|
|
|
|
|
api 'com.github.pagehelper:pagehelper-spring-boot-starter:2.1.0'
|
|
|
|
|
|
|
|
|
|
// PostgreSQL + Flyway
|
|
|
|
|
api 'org.postgresql:postgresql'
|
|
|
|
|
api 'org.flywaydb:flyway-core'
|
|
|
|
|
|
|
|
|
|
// JWT
|
|
|
|
|
api 'io.jsonwebtoken:jjwt-api:0.12.5'
|
|
|
|
|
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5'
|
|
|
|
|
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5'
|
|
|
|
|
|
2026-06-03 10:02:55 +09:00
|
|
|
// Excel (xlsx-streamer 2.2.0 → POI 5.2.5 비호환(NoSuchMethodError). 유지보수 후속 fork로 교체)
|
2026-05-09 21:29:18 +09:00
|
|
|
api 'org.apache.poi:poi-ooxml:5.2.5'
|
2026-06-03 10:02:55 +09:00
|
|
|
api 'com.github.pjfanning:excel-streaming-reader:4.3.0'
|
2026-05-09 21:29:18 +09:00
|
|
|
|
|
|
|
|
// OpenAPI / Swagger
|
|
|
|
|
api 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.3.0'
|
|
|
|
|
|
|
|
|
|
// Commons
|
|
|
|
|
api 'org.apache.commons:commons-lang3'
|
|
|
|
|
api 'commons-io:commons-io:2.15.1'
|
|
|
|
|
}
|