closes #132
This commit is contained in:
@@ -73,7 +73,7 @@ Change to the project directory and run
|
|||||||
* `mvn clean install` . If that works you can
|
* `mvn clean install` . If that works you can
|
||||||
* clean the release with `mvn release:clean` and prepare the release with
|
* clean the release with `mvn release:clean` and prepare the release with
|
||||||
* `mvn release:prepare -DignoreSnapshots=true` and enter the version numbers.
|
* `mvn release:prepare -DignoreSnapshots=true` and enter the version numbers.
|
||||||
* After that is through you can create a new release via `mvn release:perform`.This will also update the maven repo.
|
* After that is through you can create a new release via `mvn release:perform -Dmaven.java.skip=True`.This will also update the maven repo.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -217,7 +217,7 @@
|
|||||||
<mainClass>org.mustangproject.toecount.Toecount</mainClass>
|
<mainClass>org.mustangproject.toecount.Toecount</mainClass>
|
||||||
</transformer>
|
</transformer>
|
||||||
</transformers>
|
</transformers>
|
||||||
<minimizeJar>true</minimizeJar>
|
<minimizeJar>false</minimizeJar><!-- no longer java 11 compatible if set to true because it removes e.g. javax/xml/bind/annotation/XmlSchema-->
|
||||||
<filters>
|
<filters>
|
||||||
|
|
||||||
<filter>
|
<filter>
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ public class FileChecker {
|
|||||||
ZUGFeRDImporter zi = new ZUGFeRDImporter(filename);
|
ZUGFeRDImporter zi = new ZUGFeRDImporter(filename);
|
||||||
try {
|
try {
|
||||||
if (zi.canParse()) {
|
if (zi.canParse()) {
|
||||||
thisRun.incZUGFeRDCount();
|
thisRun.incZUGFeRDCount(zi.getVersion());
|
||||||
thisRun.incTotal(new BigDecimal(zi.getAmount()));
|
thisRun.incTotal(new BigDecimal(zi.getAmount()));
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ public class StatRun {
|
|||||||
pdfCount++;
|
pdfCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void incZUGFeRDCount() {
|
public void incZUGFeRDCount(int version) {
|
||||||
horseCount++;
|
horseCount++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user