dev.thiagosouto.plugins.bom-plugin
Owner: Thiago Souto
A plugin to generate BOM from gradle projects
https://github.thiagosouto.dev
Sources: https://github.com/othiagosouto/bom-plugin
Version 0.8.1 (latest)
Created 31 January 2023.
A plugin to generate BOM from gradle projects
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.thiagosouto.plugins.bom-plugin") version "0.8.1"
}
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("dev.thiagosouto.plugins.bom-plugin:dev.thiagosouto.plugins.bom-plugin.gradle.plugin:0.8.1") }
It can then be applied in the precompiled script plugin:plugins { id("dev.thiagosouto.plugins.bom-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.thiagosouto.plugins.bom-plugin:dev.thiagosouto.plugins.bom-plugin.gradle.plugin:0.8.1") } } apply(plugin = "dev.thiagosouto.plugins.bom-plugin")
- Applying plugins to all subprojects .