This commit is contained in:
Jochen Stärk
2019-08-23 22:08:57 +02:00
parent df532486a4
commit cb391ac27e
4 changed files with 4 additions and 4 deletions

View File

@@ -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.
![screenshot](development_documentation_screenshot_release.png "Screenshot Release")

View File

@@ -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>

View File

@@ -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 {

View File

@@ -44,7 +44,7 @@ public class StatRun {
pdfCount++;
}
public void incZUGFeRDCount() {
public void incZUGFeRDCount(int version) {
horseCount++;
}