Skip to content

Commit 9814608

Browse files
committed
Release 1.0.0
1 parent 2fce6e6 commit 9814608

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

pom.xml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,7 @@
44

55
<groupId>ee.ant</groupId>
66
<artifactId>dotmatrix</artifactId>
7-
<version>0.0.1-SNAPSHOT</version>
8-
<modules>
9-
<module>consoleTest</module>
10-
</modules>
11-
<packaging>pom</packaging>
7+
<version>1.0.0-RELEASE</version>
128

139
<name>DotMatrix</name>
1410

@@ -28,6 +24,19 @@
2824
<target>1.8</target>
2925
</configuration>
3026
</plugin>
27+
<plugin>
28+
<!-- Build an executable JAR -->
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-jar-plugin</artifactId>
31+
<version>3.1.0</version>
32+
<configuration>
33+
<archive>
34+
<manifest>
35+
<mainClass>ee.ant.dotmatrix.Main</mainClass>
36+
</manifest>
37+
</archive>
38+
</configuration>
39+
</plugin>
3140
</plugins>
3241
</build>
3342

run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
java -jar target/dotmatrix-1.0.0-RELEASE.jar

0 commit comments

Comments
 (0)