• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1description = 'Conscrypt: Testing'
2
3sourceSets {
4    main {
5        java {
6            srcDirs = ['src/main/java']
7        }
8    }
9}
10
11dependencies {
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.
22tasks.install.enabled = false
23tasks.uploadArchives.enabled = false;