This is an automated email from the ASF dual-hosted git repository. ayushsaxena pushed a commit to branch branch-3.3 in repository https://gitbox.apache.org/repos/asf/hadoop.git
The following commit(s) were added to refs/heads/branch-3.3 by this push: new 854eddb0cc9 HADOOP-18590. Publish SBOM artifacts (#5555). Contributed by Dongjoon Hyun. 854eddb0cc9 is described below commit 854eddb0cc93babe44efb93215d5375add7c3fb1 Author: Dongjoon Hyun <dongj...@apache.org> AuthorDate: Sat Apr 15 09:05:43 2023 -0700 HADOOP-18590. Publish SBOM artifacts (#5555). Contributed by Dongjoon Hyun. --- pom.xml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/pom.xml b/pom.xml index 57822cdd01a..17753e83c1c 100644 --- a/pom.xml +++ b/pom.xml @@ -116,6 +116,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x <dependency-check-maven.version>1.4.3</dependency-check-maven.version> <spotbugs.version>4.2.2</spotbugs.version> <spotbugs-maven-plugin.version>4.2.0</spotbugs-maven-plugin.version> + <cyclonedx.version>2.7.6</cyclonedx.version> <shell-executable>bash</shell-executable> @@ -494,6 +495,10 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> </plugin> + <plugin> + <groupId>org.cyclonedx</groupId> + <artifactId>cyclonedx-maven-plugin</artifactId> + </plugin> </plugins> </build> @@ -635,6 +640,26 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x </build> </profile> + <profile> + <id>dist</id> + <build> + <plugins> + <plugin> + <groupId>org.cyclonedx</groupId> + <artifactId>cyclonedx-maven-plugin</artifactId> + <version>${cyclonedx.version}</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>makeBom</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> <profile> <id>sign</id> --------------------------------------------------------------------- To unsubscribe, e-mail: common-commits-unsubscr...@hadoop.apache.org For additional commands, e-mail: common-commits-h...@hadoop.apache.org