mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-18 02:02:04 +01:00
17 lines
572 B
Groovy
17 lines
572 B
Groovy
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 {
|
|
compile project(':smack-core')
|
|
compile project(':smack-extensions')
|
|
compile project(':smack-experimental')
|
|
|
|
api 'org.pgpainless:pgpainless-core:0.0.1-alpha11'
|
|
|
|
testImplementation "org.bouncycastle:bcprov-jdk15on:1.65"
|
|
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
testCompile group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
|
|
}
|