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 compileOnly project(':conscrypt-constants') 17 18 implementation libs.bouncycastle.apis, 19 libs.bouncycastle.provider, 20 libs.junit 21} 22 23// No public methods here. 24tasks.withType(Javadoc).configureEach { 25 enabled = false 26} 27