Skip to content

Commit d2d64d5

Browse files
author
TheSnoozer
committed
add maven-assembly-plugin for debugging purposes
1 parent 19204a8 commit d2d64d5

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

submodule-one/pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@
3939
</execution>
4040
</executions>
4141
<configuration>
42+
<!--
4243
<excludeProperties>
4344
<excludeProperty>git.*.user.*</excludeProperty>
4445
</excludeProperties>
46+
-->
4547
<prefix>git</prefix>
4648
<verbose>true</verbose>
4749
<skipPoms>false</skipPoms>
@@ -54,6 +56,26 @@
5456
</configuration>
5557
</plugin>
5658

59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-assembly-plugin</artifactId>
62+
<version>3.1.1</version>
63+
<configuration>
64+
<descriptorRefs>
65+
<descriptorRef>jar-with-dependencies</descriptorRef>
66+
</descriptorRefs>
67+
</configuration>
68+
<executions>
69+
<execution>
70+
<id>make-assembly</id> <!-- this is used for inheritance merges -->
71+
<phase>package</phase> <!-- bind to the packaging phase -->
72+
<goals>
73+
<goal>single</goal>
74+
</goals>
75+
</execution>
76+
</executions>
77+
</plugin>
78+
5779
<plugin>
5880
<groupId>org.apache.maven.plugins</groupId>
5981
<artifactId>maven-antrun-plugin</artifactId>

0 commit comments

Comments
 (0)