Owner:
Mladen Ivanov Kralev
Init publishing
http://github.com/mladenkralev/
Sources: https://github.com/mladenkralev/Felix-Osgi-platform
Version 0.46 (latest)
Created 14 March 2020.
Plugin that creates a osgi simple felix container
Add this plugin to your build using the plugins DSL:
plugins {
id("org.felix.osgi") version "0.46"
}
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.felix.osgi:org.felix.osgi.gradle.plugin:0.46") }It can then be applied in the precompiled script plugin:plugins { id("org.felix.osgi") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.felix.osgi:org.felix.osgi.gradle.plugin:0.46") } } apply(plugin = "org.felix.osgi") - Applying plugins to all subprojects .