23 lines
671 B
Groovy
23 lines
671 B
Groovy
plugins {
|
|
id 'org.springframework.boot'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':01-api-core')
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-web'
|
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
|
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.0'
|
|
|
|
compileOnly 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
|
}
|
|
|
|
bootJar {
|
|
archiveFileName = 'api-front.jar'
|
|
}
|