com.elo.osgi.manifest
Owner:
ELO Digital Office GmbH
Plugin to create a elo based "MANIFEST.mf"
https://www.elo.com/en-de.html
Sources: https://git.elo.com/development/flows-gradle-plugin
Version 1.2.18 (latest)
Created 13 March 2025.
Plugin to create a elo based "MANIFEST.mf"
Add this plugin to your build using the plugins DSL:
plugins {
id("com.elo.osgi.manifest") version "1.2.18"
}
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.elo.osgi.manifest:com.elo.osgi.manifest.gradle.plugin:1.2.18") }
It can then be applied in the precompiled script plugin:plugins { id("com.elo.osgi.manifest") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.elo.osgi.manifest:com.elo.osgi.manifest.gradle.plugin:1.2.18") } } apply(plugin = "com.elo.osgi.manifest")
- Applying plugins to all subprojects .