com.athaydes.osgi-run
Owner: Renato Athaydes
A Gradle plugin to make the development of modular applications using OSGi completely painless
https://github.com/renatoathaydes/osgi-run
Sources: https://github.com/renatoathaydes/osgi-run
Version 1.5.5-startLevel
Created 19 October 2017.
A Gradle plugin to make the development of modular applications using OSGi completely painless
Add this plugin to your build using the plugins DSL:
plugins {
id("com.athaydes.osgi-run") version "1.5.5-startLevel"
}
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("com.athaydes.osgi-run:com.athaydes.osgi-run.gradle.plugin:1.5.5-startLevel") }
It can then be applied in the precompiled script plugin:plugins { id("com.athaydes.osgi-run") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.athaydes.osgi-run:com.athaydes.osgi-run.gradle.plugin:1.5.5-startLevel") } } apply(plugin = "com.athaydes.osgi-run")
- Applying plugins to all subprojects .