You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
564 B
17 lines
564 B
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') |
|
|
|
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" |
|
}
|
|
|