corrected dev doc

This commit is contained in:
Jochen Stärk
2019-08-22 21:14:47 +02:00
parent 391f8754ef
commit 3fdb30e445
2 changed files with 4 additions and 9 deletions

View File

@@ -70,10 +70,10 @@ You will need a git client on the console, if that's available can e.g. be check
Change to the root of the repo. Change to the root of the repo.
Change to the project directory and run Change to the project directory and run
* "/usr/local/Cellar/maven/3.5.2/bin/mvn clean install" . If that works you can * `mvn clean install` . If that works you can
* clean the release with „/usr/local/Cellar/maven/3.5.2/bin/mvn release:clean and prepare the release with * clean the release with `mvn release:clean` and prepare the release with
* "/usr/local/Cellar/maven/3.5.2/bin/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 "/usr/local/Cellar/maven/3.5.2/bin/mvn release:perform -Darguments="-Dmaven.javadoc.skip=true".This will also update the maven repo. * After that is through you can create a new release via `mvn release:perform`.This will also update the maven repo.
![screenshot](development_documentation_screenshot_release.png "Screenshot Release") ![screenshot](development_documentation_screenshot_release.png "Screenshot Release")

View File

@@ -593,11 +593,6 @@ public class ZUGFeRDExporter implements Closeable {
XMPSchemaPDFAExtensions pdfaex = new XMPSchemaPDFAExtensions(this, metadata, ZFVersion, attachZUGFeRDHeaders); XMPSchemaPDFAExtensions pdfaex = new XMPSchemaPDFAExtensions(this, metadata, ZFVersion, attachZUGFeRDHeaders);
pdfaex.setZUGFeRDVersion(ZFVersion); pdfaex.setZUGFeRDVersion(ZFVersion);
metadata.addSchema(pdfaex); metadata.addSchema(pdfaex);
for (String filenameAdditional : additionalFiles.keySet()) {
XMPSchemaPDFAExtensionsAdditionalData pdfaexadd = new XMPSchemaPDFAExtensionsAdditionalData(metadata);
metadata.addSchema(pdfaexadd);
}
} }
protected byte[] serializeXmpMetadata(XMPMetadata xmpMetadata) throws TransformerException { protected byte[] serializeXmpMetadata(XMPMetadata xmpMetadata) throws TransformerException {