Home | History | Annotate | Download | only in testing
      1 description = 'Conscrypt: Testing'
      2 
      3 sourceSets {
      4     main {
      5         java {
      6             srcDirs = ['src/main/java']
      7         }
      8     }
      9 }
     10 
     11 dependencies {
     12     // Only compile against this. Other modules will embed the generated code directly.
     13     compileOnly project(':conscrypt-constants')
     14 
     15     compile project(':conscrypt-libcore-stub'),
     16             libraries.bouncycastle_apis,
     17             libraries.bouncycastle_provider,
     18             libraries.netty_handler
     19 }
     20 
     21 // Don't include this artifact in the distribution.
     22 tasks.install.enabled = false
     23 tasks.uploadArchives.enabled = false;