mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-14 16:22:07 +01:00
21 lines
610 B
Groovy
21 lines
610 B
Groovy
plugins {
|
|
id 'org.igniterealtime.smack.java-common-conventions'
|
|
id 'org.igniterealtime.smack.android-conventions'
|
|
}
|
|
|
|
description="""
|
|
Smack API for XEP-0384: OMEMO Encryption using libsignal
|
|
"""
|
|
|
|
dependencies {
|
|
api project(":smack-im")
|
|
api project(":smack-extensions")
|
|
api project(":smack-omemo")
|
|
implementation 'org.signal:libsignal-client:0.26.0'
|
|
|
|
// TODO: Migrate Junit4 tests to Junit5.
|
|
testImplementation "org.junit.vintage:junit-vintage-engine:$junitVersion"
|
|
|
|
testFixturesApi(testFixtures(project(":smack-core")))
|
|
testImplementation project(path: ":smack-omemo", configuration: "testRuntime")
|
|
}
|