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} 19 20// Don't include this artifact in the distribution. 21tasks.install.enabled = false 22tasks.uploadArchives.enabled = false;