Smack/smack-openpgp/build.gradle

16 lines
496 B
Groovy
Raw 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 {
compile project(':smack-core')
2018-05-21 12:44:27 +02:00
compile project(':smack-extensions')
2018-05-30 22:06:09 +02:00
compile project(':smack-experimental')
2018-07-07 17:58:32 +02:00
compile 'org.pgpainless:pgpainless:0.1-SNAPSHOT'
testCompile project(path: ":smack-core", configuration: "testRuntime")
testCompile project(path: ":smack-core", configuration: "archives")
}