Skip to content

Commit bc7fb1f

Browse files
authored
chore: improve maven Reproducible Builds (#2874)
1 parent fe2d215 commit bc7fb1f

File tree

9 files changed

+16
-11
lines changed

9 files changed

+16
-11
lines changed

hugegraph-cluster-test/hugegraph-clustertest-dist/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
<plugins>
4343
<plugin>
4444
<artifactId>maven-assembly-plugin</artifactId>
45-
<version>2.4</version>
4645
<executions>
4746
<execution>
4847
<id>assembly-hugegraph-ct</id>

hugegraph-pd/hg-pd-dist/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
<plugins>
4949
<plugin>
5050
<artifactId>maven-assembly-plugin</artifactId>
51-
<version>2.4</version>
5251
<executions>
5352
<execution>
5453
<id>assembly-hugegraph-pd</id>

hugegraph-pd/hg-pd-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
<plugin>
151151
<groupId>org.springframework.boot</groupId>
152152
<artifactId>spring-boot-maven-plugin</artifactId>
153-
<version>2.5.0</version>
153+
<version>2.7.1</version>
154154
<executions>
155155
<execution>
156156
<configuration>

hugegraph-server/hugegraph-core/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,6 @@
359359
<plugin>
360360
<groupId>org.apache.maven.plugins</groupId>
361361
<artifactId>maven-jar-plugin</artifactId>
362-
<version>3.0.2</version>
363362
<configuration>
364363
<archive>
365364
<index>true</index>

hugegraph-server/hugegraph-dist/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@
165165
<plugin>
166166
<groupId>org.apache.maven.plugins</groupId>
167167
<artifactId>maven-assembly-plugin</artifactId>
168-
<version>2.4</version>
169168
<executions>
170169
<execution>
171170
<id>assembly-hugegraph</id>
@@ -177,9 +176,11 @@
177176
<attach>false</attach>
178177
<appendAssemblyId>false</appendAssemblyId>
179178
<outputDirectory>${top.level.dir}</outputDirectory>
180-
<descriptor>
181-
${assembly.descriptor.dir}/assembly.xml
182-
</descriptor>
179+
<descriptors>
180+
<descriptor>
181+
${assembly.descriptor.dir}/assembly.xml
182+
</descriptor>
183+
</descriptors>
183184
<finalName>${final.name}</finalName>
184185
</configuration>
185186
</execution>

hugegraph-store/hg-store-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<plugin>
6868
<groupId>org.springframework.boot</groupId>
6969
<artifactId>spring-boot-maven-plugin</artifactId>
70-
<version>2.5.14</version>
70+
<version>2.7.1</version>
7171
<executions>
7272
<execution>
7373
<goals>

hugegraph-store/hg-store-dist/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
<plugins>
4949
<plugin>
5050
<artifactId>maven-assembly-plugin</artifactId>
51-
<version>2.4</version>
5251
<executions>
5352
<execution>
5453
<id>assembly-hugegraph-store</id>

hugegraph-store/hg-store-node/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
<plugin>
157157
<groupId>org.springframework.boot</groupId>
158158
<artifactId>spring-boot-maven-plugin</artifactId>
159-
<version>2.5.14</version>
159+
<version>2.7.1</version>
160160
<executions>
161161
<execution>
162162
<goals>

pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,14 @@
251251
</compilerArgs>
252252
</configuration>
253253
</plugin>
254+
<plugin>
255+
<artifactId>maven-remote-resources-plugin</artifactId>
256+
<version>3.3.0</version>
257+
</plugin>
258+
<plugin>
259+
<artifactId>maven-shade-plugin</artifactId>
260+
<version>3.6.1</version>
261+
</plugin>
254262
</plugins>
255263
</pluginManagement>
256264

0 commit comments

Comments
 (0)