This is an automated email from the ASF dual-hosted git repository.
iemejia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git
The following commit(s) were added to refs/heads/master by this push:
new 82fc40bbc AVRO-3700: Publish Java SBOM artifacts with CycloneDX
82fc40bbc is described below
commit 82fc40bbc5aca780875cb07e78056978fa0a85c6
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Jan 6 00:28:54 2023 -0800
AVRO-3700: Publish Java SBOM artifacts with CycloneDX
---
pom.xml | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/pom.xml b/pom.xml
index c1865847d..3dc714fce 100644
--- a/pom.xml
+++ b/pom.xml
@@ -248,6 +248,19 @@
<goalPrefix>avro</goalPrefix>
</configuration>
</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>