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
519 B
22 lines
519 B
description = 'OpenCensus Spring'
|
|
|
|
apply plugin: 'java'
|
|
|
|
[compileJava, compileTestJava].each() {
|
|
it.sourceCompatibility = 1.6
|
|
it.targetCompatibility = 1.6
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':opencensus-api'),
|
|
libraries.spring_aspects,
|
|
libraries.spring_context
|
|
|
|
testCompile project(':opencensus-impl'),
|
|
project(':opencensus-testing'),
|
|
libraries.aspectj,
|
|
libraries.spring_test
|
|
|
|
signature "org.codehaus.mojo.signature:java17:1.0@signature"
|
|
}
|