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.
Version 1.2.0
Created 10 September 2014.
Build OSGi bundles and Eclipse Update Sites from existing JARs, e.g. from Maven repositories (Plugin for Gradle)
Add this plugin to your build using the plugins DSL:
plugins {
id("org.standardout.bnd-platform") version "1.2.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:1.2.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:1.2.0") } } apply(plugin = "org.standardout.bnd-platform") - Applying plugins to all subprojects .