16 lines
258 B
Groovy
16 lines
258 B
Groovy
plugins {
|
|
id 'org.springframework.boot'
|
|
}
|
|
dependencies {
|
|
implementation project(":recruit-api")
|
|
implementation project(":common-config")
|
|
implementation project(":upms-api")
|
|
}
|
|
group = 'com.rsjst'
|
|
bootJar {
|
|
enabled = false
|
|
}
|
|
jar {
|
|
enabled = true
|
|
}
|