build: generate and attach CycloneDX SBOM
This commit is contained in:
parent
65895d4167
commit
14f4266cb1
@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
|
||||
### Dependencies
|
||||
* Updated Jackson dependency to 2.17.1
|
||||
|
||||
### Improvement
|
||||
* Generate and attach CycloneDX SBOM
|
||||
|
||||
|
||||
## 2.0.6 - 2024-03-23
|
||||
### Dependencies
|
||||
|
21
pom.xml
21
pom.xml
@ -200,6 +200,27 @@
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>sbom</id>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.cyclonedx</groupId>
|
||||
<artifactId>cyclonedx-maven-plugin</artifactId>
|
||||
<version>2.8.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>makeBom</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</profile>
|
||||
|
||||
<profile>
|
||||
<id>sign</id>
|
||||
<build>
|
||||
|
Loading…
x
Reference in New Issue
Block a user