You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
536 B
22 lines
536 B
description = 'OpenCensus Spring Sleuth'
|
|
|
|
apply plugin: 'java'
|
|
|
|
[compileJava, compileTestJava].each() {
|
|
it.sourceCompatibility = 1.6
|
|
it.targetCompatibility = 1.6
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':opencensus-api'),
|
|
libraries.spring_boot_starter_web,
|
|
libraries.spring_cloud_build,
|
|
libraries.spring_cloud_starter_sleuth
|
|
|
|
testCompile project(':opencensus-impl'),
|
|
project(':opencensus-testing'),
|
|
libraries.spring_test
|
|
|
|
signature "org.codehaus.mojo.signature:java16:+@signature"
|
|
}
|