-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathbuild.gradle
executable file
·52 lines (39 loc) · 1.71 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
apply plugin: "io.spring.dependency-management"
apply plugin: "java"
apply plugin: 'org.springframework.boot'
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-gateway:$springCloudGatewayVersion"
mavenBom "org.springframework.cloud:spring-cloud-contract-dependencies:$springCloudContractDependenciesVersion"
mavenBom "org.springframework.cloud:spring-cloud-sleuth:$springCloudSleuthVersion"
}
}
configurations.all {
exclude module: "spring-boot-starter-web"
}
repositories {
mavenCentral()
maven {
url 'http://oss.jfrog.org/oss-snapshot-local/'
}
maven {
url "${project.rootDir}/build/repo"
}
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-webflux"
compile 'org.springframework.cloud:spring-cloud-starter-gateway'
compile "org.apache.commons:commons-lang3:3.6"
compile 'org.springframework.cloud:spring-cloud-starter-sleuth'
compile 'org.springframework.cloud:spring-cloud-starter-zipkin'
compile "io.zipkin.brave:brave-bom:4.17.1"
compile "io.micrometer:micrometer-registry-prometheus:$micrometerVersion"
compile "org.springframework.boot:spring-boot-starter-actuator"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "junit:junit:4.12"
testCompile "net.chrisrichardson.ftgo:ftgo-order-service-contracts:unspecified:stubs"
testCompile "org.springframework.cloud:spring-cloud-contract-wiremock"
testCompile "org.springframework.cloud:spring-cloud-starter-contract-stub-runner"
// FIXME: gradle was downgrading: 5.0.3.RELEASE -> 5.0.0.M6
// testCompile "org.springframework.integration:spring-integration-core:5.0.3.RELEASE"
}