io.github.gradlebom.generator-plugin
Owner: Waldemar Panas
Gradle plugin for generating a bill of materials (BOM) file for multi-module projects.
https://github.com/gradle-bom/gradle-bom-generator-plugin
Sources: https://github.com/gradle-bom/gradle-bom-generator-plugin
Version 1.0.1.RC3 (latest)
Created 17 July 2021.
Gradle plugin for generating a bill of materials (BOM) file for multi-module projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.gradlebom.generator-plugin") version "1.0.1.RC3"
}
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.gradlebom.generator-plugin:io.github.gradlebom.generator-plugin.gradle.plugin:1.0.1.RC3") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.gradlebom.generator-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.gradlebom.generator-plugin:io.github.gradlebom.generator-plugin.gradle.plugin:1.0.1.RC3") } } apply(plugin = "io.github.gradlebom.generator-plugin")
- Applying plugins to all subprojects .