35 lines
718 B
Groovy
35 lines
718 B
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.5.5'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
// 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()
|
|
}
|