config-server-pilot-server/build.gradle

35 lines
718 B
Groovy
Raw Permalink Normal View History

plugins {
id 'org.springframework.boot' version '2.5.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
2022-03-29 11:53:22 +00:00
// Spring Cloud : 2020.0.x aka Ilford
// Spring Boot : 2.4.x, 2.5.x (Starting with 2020.0.3)
group = 'com.kakaoent.adp.trevi.configserver'
version = '1.0.0'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
ext {
set('springCloudVersion', "2020.0.4")
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-config-server'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
test {
useJUnitPlatform()
}