普通文本  |  22行  |  541 B

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
}

// Don't include this artifact in the distribution.
tasks.install.enabled = false
tasks.uploadArchives.enabled = false;