2018-07-29 18:52:45 +02:00
|
|
|
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 {
|
2021-04-14 19:24:30 +02:00
|
|
|
api project(':smack-core')
|
|
|
|
api project(':smack-extensions')
|
|
|
|
api project(':smack-experimental')
|
2018-07-29 18:52:45 +02:00
|
|
|
|
2022-06-29 15:46:17 +02:00
|
|
|
api 'org.pgpainless:pgpainless-core:1.3.1'
|
2020-04-21 19:52:05 +02:00
|
|
|
|
2022-08-07 16:59:47 +02:00
|
|
|
testImplementation "org.bouncycastle:bcprov-jdk18on:${bouncyCastleVersion}"
|
2018-07-29 18:52:45 +02:00
|
|
|
|
2020-04-11 21:59:21 +02:00
|
|
|
testFixturesApi(testFixtures(project(":smack-core")))
|
2021-04-14 19:24:30 +02:00
|
|
|
testImplementation group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
|
2018-07-29 18:52:45 +02:00
|
|
|
}
|