Skip to content

Commit b23545c

Browse files
committed
package as jar with mvn package
1 parent 66aead7 commit b23545c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,25 @@
1717
<target>8</target>
1818
</configuration>
1919
</plugin>
20+
21+
<plugin>
22+
<groupId>org.apache.maven.plugins</groupId>
23+
<artifactId>maven-assembly-plugin</artifactId>
24+
<version>3.1.0</version>
25+
<configuration>
26+
<descriptorRefs>
27+
<descriptorRef>jar-with-dependencies</descriptorRef>
28+
</descriptorRefs>
29+
</configuration>
30+
<executions>
31+
<execution>
32+
<phase>package</phase>
33+
<goals>
34+
<goal>single</goal>
35+
</goals>
36+
</execution>
37+
</executions>
38+
</plugin>
2039
</plugins>
2140
</build>
2241

0 commit comments

Comments
 (0)