15 lines
248 B
Groovy
15 lines
248 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
dependencies {
|
|
implementation project(":common-core")
|
|
implementation project(":common-feign")
|
|
implementation("com.seepine:secret-core:${secretVersion}")
|
|
}
|
|
bootJar {
|
|
enabled = false
|
|
}
|
|
jar {
|
|
enabled = true
|
|
}
|