25 lines
683 B
Groovy
25 lines
683 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
api project(":common-core")
|
|
api project(":common-feign")
|
|
api project(":common-mybatis")
|
|
api project(":upms-api")
|
|
api("org.springframework.boot:spring-boot-starter-web")
|
|
api("org.springframework.boot:spring-boot-starter-undertow")
|
|
api("org.springframework.boot:spring-boot-starter-aop")
|
|
api("com.seepine:secret-spring-boot-starter-2:${secretVersion}")
|
|
api("com.seepine:wrap-spring-boot-starter:0.5.2")
|
|
api "io.springfox:springfox-boot-starter:3.0.0"
|
|
api("com.github.yitter:yitter-idgenerator:1.0.6")
|
|
api 'org.redisson:redisson-spring-boot-starter:3.23.2'
|
|
}
|
|
bootJar {
|
|
enabled = false
|
|
}
|
|
jar {
|
|
enabled = true
|
|
}
|