Search Gradle plugins

org.cyclonedx.bom

The CycloneDX Gradle plugin creates an aggregate of all direct and transitive dependencies of a project and creates a valid CycloneDX bill-of-materials document from the results. CycloneDX is a lightweight BOM specification that is easily created, human readable, and simple to parse.

https://cyclonedx.org

Sources: https://github.com/CycloneDX/cyclonedx-gradle-plugin.git

Version 1.7.3

1.7.3

Created 19 December 2022.

The CycloneDX Gradle plugin creates an aggregate of all direct and transitive dependencies of a project and creates a valid CycloneDX Software Bill of Materials (SBOM).

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.cyclonedx.bom") version "1.7.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.cyclonedx:cyclonedx-gradle-plugin:1.7.3")
      }
    }
    
    apply(plugin = "org.cyclonedx.bom")
  • Applying plugins to all subprojects .