org.standardout.bnd-platform
Owner: Simon Templer
Build OSGi bundles and p2 repositories / Eclipse Update Sites from existing libraries and their dependencies, e.g. from Maven repositories. Useful for instance for creating a target platform for Eclipse/Equinox or Maven Tycho build from third party dependencies.
https://github.com/stempler/bnd-platform
Version 3.1.0 (latest)
Created 27 November 2024.
Build OSGi bundles and p2 repositories / Eclipse Update Sites from existing libraries and their dependencies, e.g. from Maven repositories. Useful for instance for creating a target platform for Eclipse/Equinox or Maven Tycho build from third party dependencies.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.standardout.bnd-platform") version "3.1.0"
}
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.standardout.bnd-platform:org.standardout.bnd-platform.gradle.plugin:3.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("org.standardout.bnd-platform") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.standardout.bnd-platform:org.standardout.bnd-platform.gradle.plugin:3.1.0") } } apply(plugin = "org.standardout.bnd-platform")
- Applying plugins to all subprojects .