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
|
||||
* clean the release with `mvn release:clean` and prepare the release with
|
||||
* `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>
|
||||
</transformer>
|
||||
</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>
|
||||
|
||||
<filter>
|
||||
|
||||
@@ -54,7 +54,7 @@ public class FileChecker {
|
||||
ZUGFeRDImporter zi = new ZUGFeRDImporter(filename);
|
||||
try {
|
||||
if (zi.canParse()) {
|
||||
thisRun.incZUGFeRDCount();
|
||||
thisRun.incZUGFeRDCount(zi.getVersion());
|
||||
thisRun.incTotal(new BigDecimal(zi.getAmount()));
|
||||
return true;
|
||||
} else {
|
||||
|
||||
@@ -44,7 +44,7 @@ public class StatRun {
|
||||
pdfCount++;
|
||||
}
|
||||
|
||||
public void incZUGFeRDCount() {
|
||||
public void incZUGFeRDCount(int version) {
|
||||
horseCount++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user