Hi Syrine,
Your Gradle build failed because the plugin org.cyclonedx.bom version 1.10.0 isn’t available in the default plugin repositories.
Add the CycloneDX plugin repository to your settings.gradle or build.gradle:
gradle
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
}
Then apply the plugin:
gradle
plugins {
id "org.cyclonedx.bom" version "1.10.0"
This ensures Gradle can resolve the plugin from the correct repository.