mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
Don't make non-core packages a fragment bundle
as there exists no longer a dependency from smack (now smack-core) to smackx (now mostly smack-extensions). Therefore this approach is no longer needed. SMACK-343
This commit is contained in:
parent
0e664863d9
commit
39c837190d
2 changed files with 1 additions and 16 deletions
|
@ -187,15 +187,6 @@ subprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
(subprojects - project(':smack-core'))*.jar {
|
|
||||||
manifest {
|
|
||||||
attributes('Bundle-SymbolicName': project.group + '-' + project.name,
|
|
||||||
'Fragment-Host': project.group,
|
|
||||||
'Eclipse-PatchFragment': 'true')
|
|
||||||
from sharedManifest
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// This is not really beautifully, but it's the only way I found to add
|
// This is not really beautifully, but it's the only way I found to add
|
||||||
// the sub-projects description as description element to the POM
|
// the sub-projects description as description element to the POM
|
||||||
subprojects*.uploadArchives {
|
subprojects*.uploadArchives {
|
||||||
|
|
|
@ -14,13 +14,7 @@ dependencies {
|
||||||
testCompile 'org.powermock:powermock-api-mockito:1.5.+'
|
testCompile 'org.powermock:powermock-api-mockito:1.5.+'
|
||||||
testCompile 'com.jamesmurty.utils:java-xmlbuilder:0.6+'
|
testCompile 'com.jamesmurty.utils:java-xmlbuilder:0.6+'
|
||||||
}
|
}
|
||||||
jar {
|
|
||||||
manifest {
|
|
||||||
attributes('Bundle-SymbolicName': project.group,
|
|
||||||
'Eclipse-ExtensibleAPI: true')
|
|
||||||
from sharedManifest
|
|
||||||
}
|
|
||||||
}
|
|
||||||
task compressionJar(type: Jar) {
|
task compressionJar(type: Jar) {
|
||||||
appendix += '-compression'
|
appendix += '-compression'
|
||||||
dependsOn classes
|
dependsOn classes
|
||||||
|
|
Loading…
Reference in a new issue