We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb35dc1 commit 66d6862Copy full SHA for 66d6862
1 file changed
pom.xml
@@ -77,6 +77,28 @@
77
</archive>
78
</configuration>
79
</plugin>
80
+ <plugin>
81
+ <artifactId>maven-assembly-plugin</artifactId>
82
+ <configuration>
83
+ <archive>
84
+ <manifest>
85
+ <mainClass>com.ffxivcensus.gatherer.Console</mainClass>
86
+ </manifest>
87
+ </archive>
88
+ <descriptorRefs>
89
+ <descriptorRef>jar-with-dependencies</descriptorRef>
90
+ </descriptorRefs>
91
+ </configuration>
92
+ <executions>
93
+ <execution>
94
+ <id>make-assembly</id> <!-- this is used for inheritance merges -->
95
+ <phase>package</phase> <!-- bind to the packaging phase -->
96
+ <goals>
97
+ <goal>single</goal>
98
+ </goals>
99
+ </execution>
100
+ </executions>
101
+ </plugin>
102
<plugin>
103
<groupId>org.jacoco</groupId>
104
<artifactId>jacoco-maven-plugin</artifactId>
0 commit comments