io.github.goooler.osgi
Owner: Zongle Wang
A fork of https://github.com/blindpirate/gradle-legacy-osgi-plugin
https://github.com/Goooler/gradle-legacy-osgi-plugin
Sources: https://github.com/Goooler/gradle-legacy-osgi-plugin
Version 0.8.3
Created 02 August 2024.
A fork of https://github.com/blindpirate/gradle-legacy-osgi-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.goooler.osgi") version "0.8.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("io.github.goooler.osgi:io.github.goooler.osgi.gradle.plugin:0.8.3") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.goooler.osgi") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.goooler.osgi:io.github.goooler.osgi.gradle.plugin:0.8.3") } } apply(plugin = "io.github.goooler.osgi")
- Applying plugins to all subprojects .