2026-05-09 21:29:18 +09:00
|
|
|
// ga-api: REST API (실행 모듈)
|
|
|
|
|
apply plugin: 'org.springframework.boot'
|
|
|
|
|
|
|
|
|
|
bootJar {
|
|
|
|
|
enabled = true
|
|
|
|
|
archiveFileName = 'ga-api.jar'
|
|
|
|
|
mainClass = 'com.ga.api.GaApiApplication'
|
|
|
|
|
}
|
|
|
|
|
jar.enabled = false
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation project(':ga-core')
|
2026-05-11 00:08:32 +09:00
|
|
|
testImplementation 'org.springframework.security:spring-security-test'
|
2026-05-09 21:29:18 +09:00
|
|
|
}
|