org.jayware.osgi-ds
Owner: Elmar Schug
Gradle plugin to generate Declarative Services XML files
https://github.com/jayware/gradle-osgi-ds
Sources: https://github.com/jayware/gradle-osgi-ds.git
Version 0.5.6 (latest)
Created 07 March 2019.
Gradle plugin to generate Declarative Services XML files
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jayware.osgi-ds") version "0.5.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.jayware.osgi-ds:org.jayware.osgi-ds.gradle.plugin:0.5.6") }
It can then be applied in the precompiled script plugin:plugins { id("org.jayware.osgi-ds") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jayware.osgi-ds:org.jayware.osgi-ds.gradle.plugin:0.5.6") } } apply(plugin = "org.jayware.osgi-ds")
- Applying plugins to all subprojects .