mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
22 lines
813 B
Groovy
22 lines
813 B
Groovy
// Note that this is also declared in the main build.gradle for
|
|
// subprojects, but since evaluationDependsOnChildren is enabled we
|
|
// need to declare it here too to have bundle{bnd{...}} available
|
|
apply plugin: 'biz.aQute.bnd.builder'
|
|
|
|
description = """\
|
|
Smack XML parser using Stax."""
|
|
|
|
dependencies {
|
|
api project(':smack-xmlparser')
|
|
//testCompile project(path: ":smack-xmlparser", configuration: "testRuntime")
|
|
}
|
|
|
|
jar {
|
|
bundle {
|
|
bnd(
|
|
// see http://docs.osgi.org/specification/osgi.cmpn/7.0.0/service.loader.html
|
|
'Require-Capability': 'osgi.extender;filter:="(osgi.extender=osgi.serviceloader.registrar)"',
|
|
'Provide-Capability': "osgi.serviceloader;osgi.serviceloader=org.jivesoftware.smack.xml.XmlPullParserFactory;register:=org.jivesoftware.smack.xml.stax.StaxXmlPullParserFactory",
|
|
)
|
|
}
|
|
}
|