mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
4dd3800d82
By not directly depending on Bouncycastle (BC), we avoid conflicts between different bouncycastle versions. It is also part of the developers job to take care that all required security primitives are available. If they are provide by BC or some other security provider should not be up to Smack to decide. We now only add BC as test dependency to satisfy this requirement when the unit tests are executed.
11 lines
260 B
Groovy
11 lines
260 B
Groovy
description="""
|
|
Smack API for XEP-0384: OMEMO Encryption
|
|
"""
|
|
|
|
dependencies {
|
|
compile project(":smack-im")
|
|
compile project(":smack-extensions")
|
|
compile project(":smack-experimental")
|
|
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
|
}
|