de.phillippartsch.ix-osgi
Owner: Phillip Partsch
This plugin is designed to upload, install and start a custom osgi bundle for the elo indexserver
https://gitlab.com/elo12/ix-osgi
Sources: https://gitlab.com/elo12/ix-osgi-deployer
Version 2.3 (latest)
Created 01 November 2024.
Plugin to compile, create manifest and deploy an osgi bundle for the elo indexserver
Add this plugin to your build using the plugins DSL:
plugins {
id("de.phillippartsch.ix-osgi") version "2.3"
}
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("de.phillippartsch.ix-osgi:de.phillippartsch.ix-osgi.gradle.plugin:2.3") }
It can then be applied in the precompiled script plugin:plugins { id("de.phillippartsch.ix-osgi") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.phillippartsch.ix-osgi:de.phillippartsch.ix-osgi.gradle.plugin:2.3") } } apply(plugin = "de.phillippartsch.ix-osgi")
- Applying plugins to all subprojects .