We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 284d2c2 commit f8e892cCopy full SHA for f8e892c
keyboard-light-composer-application/pom.xml
@@ -28,4 +28,30 @@
28
</artifactId>
29
</dependency>
30
</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>
57
</project>
0 commit comments