1plugins { 2 alias libs.plugins.shadow 3} 4 5description = 'Conscrypt: Testing' 6 7sourceSets { 8 main { 9 java { 10 srcDirs = ['src/main/java'] 11 } 12 } 13} 14 15dependencies { 16 // Only compile against these. Other modules will embed the generated 17 // constants directly. The stubs libraries should not end up in the 18 // final build. 19 compileOnly project(':conscrypt-constants'), 20 project(':conscrypt-libcore-stub'), 21 project(':conscrypt-android-stub') 22 23 implementation libs.bouncycastle.apis, 24 libs.bouncycastle.provider, 25 libs.junit 26} 27 28// No public methods here. 29tasks.withType(Javadoc).configureEach { 30 enabled = false 31} 32