mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
14 lines
455 B
Groovy
14 lines
455 B
Groovy
|
// 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'
|
||
|
|
||
|
dependencies {
|
||
|
compile project(":smack-im")
|
||
|
compile project(":smack-extensions")
|
||
|
compile project(":smack-experimental")
|
||
|
|
||
|
testCompile project(path: ":smack-core", configuration: "testRuntime")
|
||
|
}
|