Home | History | Annotate | Download | only in exemplar_util
      1 description = 'OpenCensus Exemplar Util'
      2 
      3 apply plugin: 'java'
      4 
      5 [compileJava, compileTestJava].each() {
      6     it.sourceCompatibility = 1.6
      7     it.targetCompatibility = 1.6
      8 }
      9 
     10 dependencies {
     11     compile project(':opencensus-api')
     12 
     13     signature "org.codehaus.mojo.signature:java17:1.0@signature"
     14     signature "net.sf.androidscents.signature:android-api-level-14:4.0_r4@signature"
     15 }
     16