File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 39
39
<maven .compiler.source>8</maven .compiler.source>
40
40
<maven .compiler.target>8</maven .compiler.target>
41
41
</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 >
42
72
<distributionManagement >
43
73
<repository >
44
74
<id >github</id >
You can’t perform that action at this time.
0 commit comments