Skip to content

Commit 0b83865

Browse files
committed
temporrary disable SBOM generation (until plugin or dependency got fixed)
(cherry picked from commit 48b4b92)
1 parent 5032d1a commit 0b83865

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

build.gradle

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'ru.vyarus.github-info' version '2.0.0' apply false
33
id 'ru.vyarus.quality' version '6.0.0' apply false
44
id 'com.github.spotbugs' version '6.2.5' apply false
5-
id 'org.cyclonedx.bom' version '2.3.1' apply false
5+
// id 'org.cyclonedx.bom' version '2.3.1' apply false
66
id 'ru.vyarus.mkdocs' version '4.0.1' apply false
77

88
id 'jacoco'
@@ -134,7 +134,7 @@ subprojects {
134134
apply plugin: 'jacoco'
135135
apply plugin: 'ru.vyarus.quality'
136136
apply plugin: 'com.github.ben-manes.versions'
137-
apply plugin: 'org.cyclonedx.bom'
137+
// apply plugin: 'org.cyclonedx.bom'
138138

139139
java {
140140
sourceCompatibility = 11
@@ -195,22 +195,22 @@ subprojects {
195195
}
196196

197197
// SBOM
198-
cyclonedxBom {
199-
includeConfigs = ["runtimeClasspath"]
200-
destination = file("build/reports")
201-
outputName = "bom"
202-
outputFormat = "all"
203-
}
204-
publishing.publications.maven {
205-
artifact(file('build/reports/bom.json')) {
206-
classifier = 'cyclonedx'
207-
builtBy cyclonedxBom
208-
}
209-
artifact(file('build/reports/bom.xml')) {
210-
classifier = 'cyclonedx'
211-
builtBy cyclonedxBom
212-
}
213-
}
198+
// cyclonedxBom {
199+
// includeConfigs = ["runtimeClasspath"]
200+
// destination = file("build/reports")
201+
// outputName = "bom"
202+
// outputFormat = "all"
203+
// }
204+
// publishing.publications.maven {
205+
// artifact(file('build/reports/bom.json')) {
206+
// classifier = 'cyclonedx'
207+
// builtBy cyclonedxBom
208+
// }
209+
// artifact(file('build/reports/bom.xml')) {
210+
// classifier = 'cyclonedx'
211+
// builtBy cyclonedxBom
212+
// }
213+
// }
214214
}
215215

216216
// dependency on all subprojects required for release validation

0 commit comments

Comments
 (0)