| plugins { |
| id 'java' |
| } |
| |
| description = 'OpenCensus Http Servlet Plugin' |
| |
| [compileJava, compileTestJava].each() { |
| it.sourceCompatibility = 1.8 |
| it.targetCompatibility = 1.8 |
| } |
| |
| dependencies { |
| compile project(':opencensus-api') |
| compile project(':opencensus-contrib-http-util') |
| |
| // Will be provided from elsewhere at runtime |
| compileOnly('javax.ws.rs:javax.ws.rs-api:2.1.1') |
| compileOnly('javax.annotation:javax.annotation-api:1.3.2') |
| |
| testCompile('javax.ws.rs:javax.ws.rs-api:2.1.1') |
| testCompile('javax.annotation:javax.annotation-api:1.3.2') |
| |
| signature "org.codehaus.mojo.signature:java17:1.0@signature" |
| } |