Skip to content

Commit f8e892c

Browse files
committed
pom assembly
1 parent 284d2c2 commit f8e892c

File tree

1 file changed

+26
-0
lines changed
  • keyboard-light-composer-application

1 file changed

+26
-0
lines changed

keyboard-light-composer-application/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,30 @@
2828
</artifactId>
2929
</dependency>
3030
</dependencies>
31+
32+
<build>
33+
<plugins>
34+
<plugin>
35+
<artifactId>maven-assembly-plugin</artifactId>
36+
<configuration>
37+
<archive>
38+
<manifest>
39+
<mainClass>org.enoy.klc.app.KeyboardLightComposer</mainClass>
40+
</manifest>
41+
</archive>
42+
<descriptorRefs>
43+
<descriptorRef>jar-with-dependencies</descriptorRef>
44+
</descriptorRefs>
45+
</configuration>
46+
<executions>
47+
<execution>
48+
<phase>package</phase>
49+
<goals>
50+
<goal>single</goal>
51+
</goals>
52+
</execution>
53+
</executions>
54+
</plugin>
55+
</plugins>
56+
</build>
3157
</project>

0 commit comments

Comments
 (0)