Home | History | Annotate | Download | only in okhttp
      1 description = "gRPC: OkHttp"
      2 
      3 dependencies {
      4     compile project(':grpc-core'),
      5             libraries.okhttp,
      6             libraries.okio
      7 
      8     // Tests depend on base class defined by core module.
      9     testCompile project(':grpc-core').sourceSets.test.output,
     10             project(':grpc-testing'),
     11             project(':grpc-netty')
     12     signature "org.codehaus.mojo.signature:java17:1.0@signature"
     13     signature "net.sf.androidscents.signature:android-api-level-14:4.0_r4@signature"
     14 }
     15 
     16 project.sourceSets {
     17     main { java { srcDir "${projectDir}/third_party/okhttp/main/java" } }
     18     test { java { srcDir "${projectDir}/third_party/okhttp/test/java" } }
     19 }
     20 
     21 checkstyleMain.exclude '**/io/grpc/okhttp/internal/**'
     22 
     23 javadoc.exclude 'io/grpc/okhttp/internal/**'
     24 javadoc.options.links 'http://square.github.io/okhttp/2.x/okhttp/'
     25