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 a2d841d commit 5844294Copy full SHA for 5844294
terminalCli/pom.xml
@@ -18,4 +18,25 @@
18
<version>0.0.1-SNAPSHOT</version>
19
</dependency>
20
</dependencies>
21
+
22
+ <build>
23
+ <plugins>
24
+ <plugin>
25
+ <!-- Build an executable JAR -->
26
+ <groupId>org.apache.maven.plugins</groupId>
27
+ <artifactId>maven-jar-plugin</artifactId>
28
+ <version>3.2.0</version>
29
+ <configuration>
30
+ <archive>
31
+ <manifest>
32
+ <addClasspath>true</addClasspath>
33
+ <classpathPrefix>lib/</classpathPrefix>
34
+ <mainClass>terminalcli.Terminal</mainClass>
35
+ </manifest>
36
+ </archive>
37
+ </configuration>
38
+ </plugin>
39
+ </plugins>
40
+ </build>
41
42
</project>
0 commit comments