This is an automated email from the ASF dual-hosted git repository.
william pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc-format.git
The following commit(s) were added to refs/heads/main by this push:
new e570d2e MINOR: Add SBOM
e570d2e is described below
commit e570d2ecbcded3065e14358d6358debbb6c1f721
Author: William Hyun <[email protected]>
AuthorDate: Tue Jan 2 18:50:39 2024 -0800
MINOR: Add SBOM
---
pom.xml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/pom.xml b/pom.xml
index e57f463..a0118ac 100644
--- a/pom.xml
+++ b/pom.xml
@@ -281,6 +281,19 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.cyclonedx</groupId>
+ <artifactId>cyclonedx-maven-plugin</artifactId>
+ <version>2.7.6</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>makeBom</goal>
+ </goals>
+ <phase>package</phase>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>