This is an automated email from the ASF dual-hosted git repository.
mbalassi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 02f08c12 [FLINK-30599][build] Publish SBOM artifacts (#503)
02f08c12 is described below
commit 02f08c1261ec3130b90bc06491b5aa9f02ed7fc8
Author: Márton Balassi <[email protected]>
AuthorDate: Thu Jan 12 18:12:31 2023 +0100
[FLINK-30599][build] Publish SBOM artifacts (#503)
Based on https://github.com/apache/flink/pull/21606
---
pom.xml | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/pom.xml b/pom.xml
index f3576a7b..146821a8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -402,6 +402,20 @@ under the License.
</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>
</build>