23 lines
No EOL
578 B
Groovy
23 lines
No EOL
578 B
Groovy
description = 'Conscrypt: Testing'
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = ['src/main/java']
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Only compile against this. Other modules will embed the generated code directly.
|
|
compileOnly project(':conscrypt-constants')
|
|
|
|
compile project(':conscrypt-libcore-stub'),
|
|
libraries.bouncycastle_apis,
|
|
libraries.bouncycastle_provider,
|
|
libraries.netty_handler
|
|
}
|
|
|
|
// Don't include this artifact in the distribution.
|
|
tasks.install.enabled = false
|
|
tasks.uploadArchives.enabled = false; |