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
|
|
|
|
2020-08-30 23:08:26 +02:00
|
|
|
api 'org.pgpainless:pgpainless-core:0.1.0'
|
2020-04-21 19:52:05 +02:00
|
|
|
|
2020-05-13 22:20:32 +02:00
|
|
|
testImplementation "org.bouncycastle:bcprov-jdk15on:${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
|
|
|
}
|