Publish SBOM artifacts (#13648)

This commit is contained in:
Dongjoon Hyun 2023-01-10 02:38:10 -08:00 committed by GitHub
parent 74a76c74b1
commit 2503095296
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 13 additions and 0 deletions

13
pom.xml
View File

@ -1536,6 +1536,19 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>2.7.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>makeBom</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>