Skip to content

Commit 26ae705

Browse files
author
Roland Schuller
authored
Update pom.xml
1 parent a0122cf commit 26ae705

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,36 @@
3939
<maven.compiler.source>8</maven.compiler.source>
4040
<maven.compiler.target>8</maven.compiler.target>
4141
</properties>
42+
<build>
43+
<plugins>
44+
<plugin>
45+
<groupId>org.apache.maven.plugins</groupId>
46+
<artifactId>maven-assembly-plugin</artifactId>
47+
<version>3.3.0</version>
48+
<configuration>
49+
<!-- get all project dependencies -->
50+
<descriptorRefs>
51+
<descriptorRef>jar-with-dependencies</descriptorRef>
52+
</descriptorRefs>
53+
<archive>
54+
<manifest>
55+
56+
</manifest>
57+
</archive>
58+
</configuration>
59+
<executions>
60+
<execution>
61+
<id>make-assembly</id>
62+
<!-- bind to the packaging phase -->
63+
<phase>package</phase>
64+
<goals>
65+
<goal>single</goal>
66+
</goals>
67+
</execution>
68+
</executions>
69+
</plugin>
70+
</plugins>
71+
</build>
4272
<distributionManagement>
4373
<repository>
4474
<id>github</id>

0 commit comments

Comments
 (0)