Smack/smack-openpgp/build.gradle

18 lines
564 B
Groovy
Raw Normal View History

description = """\
Smack API for XEP-0373: OpenPGP for XMPP."""
// Note that the test dependencies (junit, …) are inferred from the
// sourceSet.test of the core subproject
dependencies {
api project(':smack-core')
api project(':smack-extensions')
api project(':smack-experimental')
2021-12-07 19:29:08 +01:00
api 'org.pgpainless:pgpainless-core:1.0.0-rc6'
testImplementation "org.bouncycastle:bcprov-jdk15on:${bouncyCastleVersion}"
testFixturesApi(testFixtures(project(":smack-core")))
testImplementation group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
}