14 lines
267 B
Groovy
14 lines
267 B
Groovy
|
|
// 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')
|
||
|
|
}
|