Skip to content

Commit

Permalink
corrected dev doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Jochen Stärk authored and Jochen Stärk committed Aug 22, 2019
1 parent 391f875 commit 3fdb30e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions doc/development_documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 project directory and run
* "/usr/local/Cellar/maven/3.5.2/bin/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
* "/usr/local/Cellar/maven/3.5.2/bin/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.
* `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.

![screenshot](development_documentation_screenshot_release.png "Screenshot Release")

Expand Down
5 changes: 0 additions & 5 deletions src/main/java/org/mustangproject/ZUGFeRD/ZUGFeRDExporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -593,11 +593,6 @@ protected void addXMP(XMPMetadata metadata) {
XMPSchemaPDFAExtensions pdfaex = new XMPSchemaPDFAExtensions(this, metadata, ZFVersion, attachZUGFeRDHeaders);
pdfaex.setZUGFeRDVersion(ZFVersion);
metadata.addSchema(pdfaex);
for (String filenameAdditional : additionalFiles.keySet()) {
XMPSchemaPDFAExtensionsAdditionalData pdfaexadd = new XMPSchemaPDFAExtensionsAdditionalData(metadata);
metadata.addSchema(pdfaexadd);
}

}

protected byte[] serializeXmpMetadata(XMPMetadata xmpMetadata) throws TransformerException {
Expand Down

0 comments on commit 3fdb30e

Please sign in to comment.