We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90a31e7 commit 2538d95Copy full SHA for 2538d95
2 files changed
src/main/java/org/openrewrite/java/dependencies/Sbom.java
@@ -289,6 +289,7 @@ public static class Dependency {
289
@JacksonXmlProperty(isAttribute = true)
290
String ref;
291
@JacksonXmlElementWrapper(useWrapping = false)
292
+ @JacksonXmlProperty(localName = "dependency")
293
List<Dependency> dependencies;
294
}
295
src/main/java/org/openrewrite/java/dependencies/SoftwareBillOfMaterials.java
@@ -53,6 +53,11 @@ public String getDescription() {
53
"Places a file named sbom.xml adjacent to the Gradle or Maven build file.";
54
55
56
+ @Override
57
+ public Set<String> getTags() {
58
+ return Collections.singleton("CycloneDX");
59
+ }
60
+
61
public static class Accumulator {
62
Set<Path> existingSboms = new LinkedHashSet<>();
63
Set<Path> sbomPaths = new LinkedHashSet<>();
0 commit comments