2021-10-14 07:01:42 +00:00
|
|
|
plugins {
|
|
|
|
id 'org.springframework.boot' version '2.5.5'
|
|
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'com.kakaoent.cpdd'
|
|
|
|
version = '0.0.1-SNAPSHOT'
|
|
|
|
sourceCompatibility = '11'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
ext {
|
|
|
|
set('springCloudVersion', "2020.0.4")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-10-18 05:16:09 +00:00
|
|
|
implementation 'org.projectlombok:lombok'
|
|
|
|
|
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-webflux'
|
2021-10-14 07:01:42 +00:00
|
|
|
implementation 'org.springframework.cloud:spring-cloud-starter-config'
|
2021-10-18 05:16:09 +00:00
|
|
|
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
|
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
|
|
|
2021-10-14 07:01:42 +00:00
|
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
2021-10-18 05:16:09 +00:00
|
|
|
|
2021-10-14 07:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencyManagement {
|
|
|
|
imports {
|
|
|
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|