mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
Fix OSGi component definition for smack-resolver-javax
The Service Component definition for resolver-javax is in org.jivesofware.samck and not org.jivesoftware.smack*x*. SMACK-576
This commit is contained in:
parent
057d00c9de
commit
16ea073f4d
1 changed files with 11 additions and 1 deletions
12
build.gradle
12
build.gradle
|
@ -211,7 +211,7 @@ subprojects {
|
|||
}
|
||||
}
|
||||
|
||||
['smack-resolver-javax', 'smack-extensions', 'smack-experimental', 'smack-legacy'].each { name ->
|
||||
['smack-extensions', 'smack-experimental', 'smack-legacy'].each { name ->
|
||||
project(":$name") {
|
||||
jar {
|
||||
manifest {
|
||||
|
@ -221,6 +221,16 @@ subprojects {
|
|||
}
|
||||
}
|
||||
|
||||
['smack-resolver-javax'].each { name ->
|
||||
project(":$name") {
|
||||
jar {
|
||||
manifest {
|
||||
instruction 'Service-Component', "org.jivesoftware.smack/$name-components.xml"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
subprojects*.jar {
|
||||
manifest {
|
||||
from sharedManifest
|
||||
|
|
Loading…
Reference in a new issue