2014-09-20 09:53:22 +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'
|
|
|
|
|
2014-07-20 12:58:36 +02:00
|
|
|
description = """\
|
|
|
|
Smack for Java7 (or higher).
|
|
|
|
This is a pseudo-artifact that pulls all the required dependencies to
|
2014-09-19 11:27:40 +02:00
|
|
|
run Smack on Java 7 (or higher) JVMs. Usually you want to add additional
|
|
|
|
dependencies to smack-tcp, smack-extensions and smack-experimental."""
|
2014-07-20 12:58:36 +02:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(":smack-core")
|
|
|
|
compile project(":smack-resolver-javax")
|
2014-08-01 10:34:47 +02:00
|
|
|
compile project(":smack-sasl-javax")
|
2014-07-20 12:58:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
javadoc {
|
|
|
|
enabled = false
|
|
|
|
}
|
2014-09-20 09:53:22 +02:00
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
instruction 'Import-Package', '!sun.security.*, *'
|
|
|
|
}
|
|
|
|
}
|