Drop OSGi support

This commit is contained in:
Florian Schmaus 2019-02-05 13:23:30 +01:00
parent 083dac8b83
commit d06f533bb9
5 changed files with 0 additions and 35 deletions

View File

@ -333,7 +333,6 @@ ${oneLineDesc}."""
evaluationDependsOnChildren() evaluationDependsOnChildren()
subprojects { subprojects {
apply plugin: 'maven' apply plugin: 'maven'
apply plugin: 'osgi'
apply plugin: 'signing' apply plugin: 'signing'
apply plugin: 'checkstyle' apply plugin: 'checkstyle'
apply plugin: 'org.kordamp.gradle.clirr' apply plugin: 'org.kordamp.gradle.clirr'

View File

@ -1,8 +1,3 @@
// 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
apply plugin: 'osgi'
description = """\ description = """\
Smack core components.""" Smack core components."""
@ -47,9 +42,3 @@ task createVersionResource(type: CreateFileTask) {
} }
compileJava.dependsOn(createVersionResource) compileJava.dependsOn(createVersionResource)
jar {
manifest {
instruction 'DynamicImport-Package', '*'
}
}

View File

@ -1,9 +1,3 @@
// 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'
description = """\ description = """\
Smack for Java7 (or higher). Smack for Java7 (or higher).
This is a pseudo-artifact that pulls all the required dependencies to This is a pseudo-artifact that pulls all the required dependencies to
@ -19,9 +13,3 @@ dependencies {
javadoc { javadoc {
enabled = false enabled = false
} }
jar {
manifest {
instruction 'Import-Package', '!sun.security.*, *'
}
}

View File

@ -1,8 +1,3 @@
// 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'
apply plugin: 'checkstyle' apply plugin: 'checkstyle'
apply plugin: 'maven' apply plugin: 'maven'

View File

@ -1,9 +1,3 @@
// 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 { dependencies {
compile project(":smack-im") compile project(":smack-im")
compile project(":smack-extensions") compile project(":smack-extensions")