52 lines
1.2 KiB
Groovy
52 lines
1.2 KiB
Groovy
plugins {
|
|
id 'org.springframework.boot' version '2.4.4'
|
|
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
|
|
id 'java'
|
|
}
|
|
|
|
group 'org.example'
|
|
version '1.0-SNAPSHOT'
|
|
sourceCompatibility = "1.11"
|
|
|
|
ext {
|
|
springCloudSleuthOtelVersion = "1.0.0-M1"
|
|
releaseTrainVersion = "2020.0.1"
|
|
}
|
|
|
|
apply plugin: "io.spring.dependency-management"
|
|
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "https://repo.spring.io/snapshot"
|
|
}
|
|
maven {
|
|
url "https://repo.spring.io/milestone"
|
|
}
|
|
maven {
|
|
url "https://repo.spring.io/release"
|
|
}
|
|
}
|
|
// MSA 용
|
|
dependencyManagement {
|
|
imports {
|
|
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${releaseTrainVersion}"
|
|
mavenBom "org.springframework.cloud:spring-cloud-sleuth-otel-dependencies:${springCloudSleuthOtelVersion}"
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
|
compile("org.springframework.cloud:spring-cloud-starter-config")
|
|
compile("org.springframework.cloud:spring-cloud-starter-netflix-eureka-client")
|
|
compile("org.springframework.cloud:spring-cloud-starter-gateway")
|
|
|
|
implementation 'org.projectlombok:lombok'
|
|
annotationProcessor 'org.projectlombok:lombok'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |