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

vgalaxies pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git


The following commit(s) were added to refs/heads/master by this push:
     new bc7fb1f43 chore: improve maven Reproducible Builds (#2874)
bc7fb1f43 is described below

commit bc7fb1f43e9455f157f032edc7334640b80d055e
Author: HervĂ© Boutemy <[email protected]>
AuthorDate: Sat Sep 20 08:27:24 2025 +0200

    chore: improve maven Reproducible Builds (#2874)
---
 hugegraph-cluster-test/hugegraph-clustertest-dist/pom.xml | 1 -
 hugegraph-pd/hg-pd-dist/pom.xml                           | 1 -
 hugegraph-pd/hg-pd-service/pom.xml                        | 2 +-
 hugegraph-server/hugegraph-core/pom.xml                   | 1 -
 hugegraph-server/hugegraph-dist/pom.xml                   | 9 +++++----
 hugegraph-store/hg-store-cli/pom.xml                      | 2 +-
 hugegraph-store/hg-store-dist/pom.xml                     | 1 -
 hugegraph-store/hg-store-node/pom.xml                     | 2 +-
 pom.xml                                                   | 8 ++++++++
 9 files changed, 16 insertions(+), 11 deletions(-)

diff --git a/hugegraph-cluster-test/hugegraph-clustertest-dist/pom.xml 
b/hugegraph-cluster-test/hugegraph-clustertest-dist/pom.xml
index 20e3efc59..7ec79efba 100644
--- a/hugegraph-cluster-test/hugegraph-clustertest-dist/pom.xml
+++ b/hugegraph-cluster-test/hugegraph-clustertest-dist/pom.xml
@@ -42,7 +42,6 @@
         <plugins>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.4</version>
                 <executions>
                     <execution>
                         <id>assembly-hugegraph-ct</id>
diff --git a/hugegraph-pd/hg-pd-dist/pom.xml b/hugegraph-pd/hg-pd-dist/pom.xml
index 251ec8bcb..c0e3b11d7 100644
--- a/hugegraph-pd/hg-pd-dist/pom.xml
+++ b/hugegraph-pd/hg-pd-dist/pom.xml
@@ -48,7 +48,6 @@
         <plugins>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.4</version>
                 <executions>
                     <execution>
                         <id>assembly-hugegraph-pd</id>
diff --git a/hugegraph-pd/hg-pd-service/pom.xml 
b/hugegraph-pd/hg-pd-service/pom.xml
index 81b456870..902a39d18 100644
--- a/hugegraph-pd/hg-pd-service/pom.xml
+++ b/hugegraph-pd/hg-pd-service/pom.xml
@@ -150,7 +150,7 @@
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>2.5.0</version>
+                <version>2.7.1</version>
                 <executions>
                     <execution>
                         <configuration>
diff --git a/hugegraph-server/hugegraph-core/pom.xml 
b/hugegraph-server/hugegraph-core/pom.xml
index 5ec2185ab..83bd141ce 100644
--- a/hugegraph-server/hugegraph-core/pom.xml
+++ b/hugegraph-server/hugegraph-core/pom.xml
@@ -359,7 +359,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
-                <version>3.0.2</version>
                 <configuration>
                     <archive>
                         <index>true</index>
diff --git a/hugegraph-server/hugegraph-dist/pom.xml 
b/hugegraph-server/hugegraph-dist/pom.xml
index 7f4dd454c..324d253dc 100644
--- a/hugegraph-server/hugegraph-dist/pom.xml
+++ b/hugegraph-server/hugegraph-dist/pom.xml
@@ -165,7 +165,6 @@
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-assembly-plugin</artifactId>
-                    <version>2.4</version>
                     <executions>
                         <execution>
                             <id>assembly-hugegraph</id>
@@ -177,9 +176,11 @@
                                 <attach>false</attach>
                                 <appendAssemblyId>false</appendAssemblyId>
                                 
<outputDirectory>${top.level.dir}</outputDirectory>
-                                <descriptor>
-                                    ${assembly.descriptor.dir}/assembly.xml
-                                </descriptor>
+                                <descriptors>
+                                    <descriptor>
+                                        ${assembly.descriptor.dir}/assembly.xml
+                                    </descriptor>
+                                </descriptors>
                                 <finalName>${final.name}</finalName>
                             </configuration>
                         </execution>
diff --git a/hugegraph-store/hg-store-cli/pom.xml 
b/hugegraph-store/hg-store-cli/pom.xml
index 84de81569..5ad84966f 100644
--- a/hugegraph-store/hg-store-cli/pom.xml
+++ b/hugegraph-store/hg-store-cli/pom.xml
@@ -67,7 +67,7 @@
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>2.5.14</version>
+                <version>2.7.1</version>
                 <executions>
                     <execution>
                         <goals>
diff --git a/hugegraph-store/hg-store-dist/pom.xml 
b/hugegraph-store/hg-store-dist/pom.xml
index b0988d8aa..12acb0ba9 100644
--- a/hugegraph-store/hg-store-dist/pom.xml
+++ b/hugegraph-store/hg-store-dist/pom.xml
@@ -48,7 +48,6 @@
         <plugins>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.4</version>
                 <executions>
                     <execution>
                         <id>assembly-hugegraph-store</id>
diff --git a/hugegraph-store/hg-store-node/pom.xml 
b/hugegraph-store/hg-store-node/pom.xml
index 5406b1c8a..aff68d0db 100644
--- a/hugegraph-store/hg-store-node/pom.xml
+++ b/hugegraph-store/hg-store-node/pom.xml
@@ -156,7 +156,7 @@
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
-                <version>2.5.14</version>
+                <version>2.7.1</version>
                 <executions>
                     <execution>
                         <goals>
diff --git a/pom.xml b/pom.xml
index 1fa07660e..3b9d71ba0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -251,6 +251,14 @@
                         </compilerArgs>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <artifactId>maven-remote-resources-plugin</artifactId>
+                    <version>3.3.0</version>
+                </plugin>
+                <plugin>
+                    <artifactId>maven-shade-plugin</artifactId>
+                    <version>3.6.1</version>
+                </plugin>
             </plugins>
         </pluginManagement>
 

Reply via email to