forked from emmanuelidi/vertx-zipkin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
32 lines (25 loc) · 1008 Bytes
/
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
apply plugin: "maven"
group = "io.vertx"
version = "0.0.1"
apply plugin: 'java'
configurations.all {
resolutionStrategy.force 'io.vertx:vertx-core:3.2.1+tracing'
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile group: 'io.vertx', name: 'vertx-core', version: '3.2.1+tracing'
compile group: 'io.vertx', name: 'vertx-web', version: '3.2.1'
compile group: 'io.zipkin.brave', name: 'brave-core', version: '3.9.0'
compile group: 'io.zipkin.brave', name: 'brave-http', version: '3.9.0'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.21'
compileOnly group: 'io.zipkin.brave', name: 'brave-spancollector-scribe', version: '3.9.0'
compileOnly group: 'io.zipkin.brave', name: 'brave-spancollector-kafka', version: '3.9.0'
testCompile group: 'junit', name: 'junit', version: '4.+'
testCompile group: 'io.vertx', name: 'vertx-unit', version: '3.2.1'
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked"
}