Home | History | Annotate | Download | only in signalfx
      1 description = 'OpenCensus SignalFx Stats Exporter'
      2 
      3 [compileJava, compileTestJava].each() {
      4     it.sourceCompatibility = 1.7
      5     it.targetCompatibility = 1.7
      6 }
      7 
      8 dependencies {
      9     compileOnly libraries.auto_value
     10 
     11     compile project(':opencensus-api'),
     12             libraries.guava
     13 
     14     compile (libraries.signalfx_java) {
     15         // Prefer library version.
     16         exclude group: 'com.google.guava', module: 'guava'
     17     }
     18 
     19     testCompile project(':opencensus-api')
     20 
     21     signature "org.codehaus.mojo.signature:java17:1.0@signature"
     22     signature "net.sf.androidscents.signature:android-api-level-14:4.0_r4@signature"
     23 }
     24