You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2023/05/24 15:20:51 UTC

[hbase] branch master updated: HBASE-27876 Only generate SBOM when releasing (#5251)

This is an automated email from the ASF dual-hosted git repository.

zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 256e5e9cd8d HBASE-27876 Only generate SBOM when releasing (#5251)
256e5e9cd8d is described below

commit 256e5e9cd8d36c6cc25e3d0b100929ac974e2093
Author: Shuhei Yamasaki <ya...@oss.nttdata.com>
AuthorDate: Thu May 25 00:20:39 2023 +0900

    HBASE-27876 Only generate SBOM when releasing (#5251)
    
    Move CycloneDX plugin to profile section
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 pom.xml | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/pom.xml b/pom.xml
index 383e3c74c78..3ab81724a12 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2905,19 +2905,6 @@
           </formats>
         </configuration>
       </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>
     <extensions>
       <extension>
@@ -3487,6 +3474,19 @@
               </dependency>
             </dependencies>
           </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>
     </profile>