Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimkim committed Apr 25, 2018
1 parent 2fce6e6 commit 9814608
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
19 changes: 14 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@

<groupId>ee.ant</groupId>
<artifactId>dotmatrix</artifactId>
<version>0.0.1-SNAPSHOT</version>
<modules>
<module>consoleTest</module>
</modules>
<packaging>pom</packaging>
<version>1.0.0-RELEASE</version>

<name>DotMatrix</name>

Expand All @@ -28,6 +24,19 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<mainClass>ee.ant.dotmatrix.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>

Expand Down
2 changes: 2 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
java -jar target/dotmatrix-1.0.0-RELEASE.jar

0 comments on commit 9814608

Please sign in to comment.