File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
src/main/java/com/comphenix/rema1000 Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 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 >
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 >
Original file line number Diff line number Diff 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 ();
You can’t perform that action at this time.
0 commit comments