demo/common-feign/build.gradle

20 lines
464 B
Groovy

plugins {
id 'java-library'
}
dependencies {
implementation project(":common-core")
api("org.springframework.cloud:spring-cloud-starter-openfeign:3.1.3")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-undertow")
implementation("com.seepine:secret-core:${secretVersion}")
api("com.seepine:http:${httpVersion}")
}
bootJar {
enabled = false
}
jar {
enabled = true
}