mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
f7eaa3cc9e
As those plugins are already configured by the projects root build.gradle file, there is no need to apply them again.
13 lines
325 B
Groovy
13 lines
325 B
Groovy
description="""
|
|
Smack API for XEP-0384: OMEMO Encryption
|
|
"""
|
|
|
|
dependencies {
|
|
compile project(":smack-im")
|
|
compile project(":smack-extensions")
|
|
compile project(":smack-experimental")
|
|
|
|
compile "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion"
|
|
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
}
|