Smack/smack-openpgp/build.gradle

18 lines
560 B
Groovy
Raw Permalink 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')
2023-06-24 11:10:24 +02:00
api 'org.pgpainless:pgpainless-core:1.5.3'
2022-08-07 16:59:47 +02:00
testImplementation "org.bouncycastle:bcprov-jdk18on:${bouncyCastleVersion}"
testFixturesApi(testFixtures(project(":smack-core")))
testImplementation group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
}