2017-06-02 12:26:37 +02:00
|
|
|
// Although the osgi plugin is already applied by the root project's
|
|
|
|
// subprojects closure, we need to re-apply it here so that the
|
|
|
|
// manifest is a OsgiManifest. Possible caused by
|
|
|
|
// evaluationDependsOnChildren in the root project.
|
|
|
|
apply plugin: 'osgi'
|
|
|
|
apply plugin: 'checkstyle'
|
|
|
|
apply plugin: 'maven'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":smack-im")
|
|
|
|
compile project(":smack-extensions")
|
|
|
|
compile project(":smack-omemo")
|
2018-06-13 12:29:16 +02:00
|
|
|
compile 'org.whispersystems:signal-protocol-java:2.6.2'
|
2017-06-02 12:26:37 +02:00
|
|
|
|
|
|
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
2018-06-13 12:29:16 +02:00
|
|
|
testCompile project(path: ":smack-omemo", configuration: "testRuntime")
|
2017-06-02 12:26:37 +02:00
|
|
|
}
|