Skip to content

Commit 7a6a5af

Browse files
committed
Release 1.0.0
1 parent b65ed3a commit 7a6a5af

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

pom.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>com.comphenix.rema1000</groupId>
6-
<artifactId>Rema1000TransactionParser</artifactId>
7-
<version>1.0-SNAPSHOT</version>
6+
<artifactId>RemaTransactionParser</artifactId>
7+
<version>1.0.0</version>
88
<packaging>jar</packaging>
99

1010
<properties>
@@ -32,6 +32,8 @@
3232
<archive>
3333
<manifest>
3434
<mainClass>com.comphenix.rema1000.Application</mainClass>
35+
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
36+
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
3537
</manifest>
3638
</archive>
3739
</configuration>

src/main/java/com/comphenix/rema1000/Application.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public static void main(String[] args) throws IOException {
132132
parser.parse(args);
133133

134134
if (parser.isShowHelp()) {
135-
System.out.println("RemaTransactionParser [-f format] [-s] [-h] source destination");
135+
System.out.println("RemaTransactionParser -f format] [-s] [-h] source destination");
136136
System.out.println(" -f format Specify the output format, either XLSX (Excel 2003) or SQL ");
137137
System.out.println(" (Database Export script for SQLite). If not specified, the");
138138
System.out.println(" output file extension will be used instead.");
@@ -144,6 +144,7 @@ public static void main(String[] args) throws IOException {
144144
System.out.println(" May be omitted in stream mode.");
145145
System.out.println(" destination Path to the output XLSX- or SQL-file where the conversion");
146146
System.out.println(" output will be written. May be omitted in stream mode.");
147+
System.out.println("Version: " + Application.class.getPackage().getImplementationVersion());
147148
return;
148149
}
149150
Gson gson = new Gson();

0 commit comments

Comments
 (0)