Files
mustangproject/doc/development_documentation.md
2022-10-17 18:23:03 +02:00

8.2 KiB

General approach

  1. build

To check if the necessary tools are there, the build is in a stable state and works on your platform, e.g. download and extract https://github.com/ZUGFeRD/mustangproject/archive/master.zip and run ./mvnw clean package

Mvnw is a maven wrapper which will download maven.Maven is the dependency management tool which will download all libraries, their dependencies, and build the whole thing. Mvnw is a maven wrapper which will download maven.Maven is the dependency management tool which will download all libraries, their dependencies, and build the whole thing.

You will need a Java JDK, e.g. https://www.azul.com/downloads/zulu-community/?architecture=x86-64-bit&package=jdk

If that does not work feel free to address the community support mailing list with error messages/steps to reproduce.

You may already start developing what you wanted. Of course you can use any editor or IDE you like, I suggest Intellij Community Edition https://www.jetbrains.com/de-de/idea/download/

  1. fork

Once you can build, the idea is that you contribute patches via pull requests. For this you need a github account and a personal copy of the repository to store your changes in. Just klick fork on the mustangproject. On your copy you will have git write access. My suggestion as git client is sourcetree (I can send you instructions how to set it up).

  1. branch

If you do a pull request, please do a feature branch, e.g. if you are working on a feature abc you could call your branch feature_abc. Merge requests unfortunately don't work if you don't have a branch you request merge of. Technically we follow the "github flow" strategy (not to be exchanged with the more sophisticated "git flow" strategy)

  1. test

Most of mustang is a library, adding (autmated junit) test cases is often not only the most sustainable but also the fastest way to see if new/changed functionality works. If something is changed so that old test cases break on purpose please do not just remove them but take the time to fix the test cases

Architecture

Mustang contains a library to read/write e-invoices, a validator library
(and can also read/write e-invoices, but is substantially larger) and a commandline application using the latter library.

Architecture of mustangproject

The validator component embeds VeraPDF, a open-source PDF/A-validator, via maven dependency and uses standard java checks against schema and ph-schematron for checks against the schematron to validate the XML part of the invoices.

Architecture of the validator

New build

Target platform is java 1.8

Build

The package can be build with

mvnw clean package

In case you also want to generate XSLT files from new schematron files for the validator please run the profile "generateXSLTFromSchematron" (which takes around 20min on my machine)

mvnw clean package -P generateXSLTFromSchematron

Test

package -Dmaven.surefire.debug="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8001 -Xnoagent -Djava.compiler=NONE" can be used as debug configuration goal in Eclipse. In that case you can set breakpoints in tests.

Validate

The former ZUGFeRD VeraPDF ZUV validator is now part of Mustangproject. The JUnit tests of the validator component will also run through a couple of test files of the library component.

Deployment

A section in Maven's settings.xml is needed, in Linux (and MacOS) that's at ~/.m2/settings.xml

As „servers“, enter the following

   <servers> 
    <server> 
      <id>github</id> 
      <password>GITHUB-TOKEN</password> 
    </server> 
    <server> 
      <id>ossrh</id> 
      <username>jstaerk</username> 
      <password>JIRA-PASSWORD</password> 
    </server> 
   </servers> 

Add a profiles section to settings.xml

  <profiles>
    <profile>
      <id>ossrh</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <properties>
        <gpg.passphrase>PASSPHRASE</gpg.passphrase>
      </properties>
    </profile>
  </profiles>

The whole settings.xml then looks e.g. like this

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                          https://maven.apache.org/xsd/settings-1.0.0.xsd">
      <localRepository/>
      <interactiveMode/>
      <usePluginRegistry/>
      <offline/>
      <pluginGroups/>
      <servers>
        <server> 
      	<id>github</id> 
      	<password>TOKEN</password> 
        </server> 
    <server> 
      <id>ossrh</id> 
      <username>jstaerk</username> 
      <password>JIRA-PASSWORD</password> 
    </server> 

      </servers>
      <mirrors/>
      <proxies/>
      <profiles>
        <profile>
          <id>ossrh</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
          <properties>
            <gpg.passphrase>PASSPHRASE</gpg.passphrase>
          </properties>
        </profile>
      </profiles>
      <activeProfiles/>
</settings>

The TOKEN is generated on github. Deployment to maven central is described e.g. on dzone. See the following screenshot: Sign in in GitHub and click on the profile picture -> Settings. Now just generate a new token and set the checkboxes from the screenshot. screenshot The Token-ID is the password.

In .m2 also need a toolchains.xml which defines a Sun JDK 1.8 target like the following:

<?xml version="1.0" encoding="UTF-8"?>
<toolchains>
  <!-- JDK toolchains -->
  <toolchain>
    <type>jdk</type>
    <provides>
      <version>1.8</version>
      <vendor>sun</vendor>
    </provides>
    <configuration>
      <jdkHome>C:\Program Files\Java\jdk1.8.0_341</jdkHome>
    </configuration>
  </toolchain>
  <toolchain>
    <type>jdk</type>
    <provides>
      <version>18</version>
      <vendor>zulu</vendor>
    </provides>
    <configuration>
      <jdkHome>C:\Program Files\Zulu\zulu-18\</jdkHome>
    </configuration>
  </toolchain>
 
</toolchains>

Integrate before release

If you added functionality which you need to test in another project before a new version of Mustang is released you can install the jar you just generated in your target branch in your local maven cache so it gets picked instead of the maybe not yet even existing new release version:

cd validator/target
mvn install:install-file -Dfile=validator-2.5.5-SNAPSHOT-shaded.jar -DgroupId=org.mustangproject -DartifactId=validator -Dversion=2.5.5 -Dpackaging=jar -DgeneratePom=true

In gradle you can use something like

implementation files('libs/validator-2.5.6-shaded.jar')

Release

You will need a git client on the console, if that's available can e.g. be checked with "git --version" . Change to the root of the repo.

Change to the project directory and run

  • mvn clean install confirm javadoc is OK with
  • mvn javadoc:javadoc. If that works you can
  • clean the release with mvn release:clean and prepare the release with
  • mvn release:prepare 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

Afterwards you can access the release page and update the documentation, e.g. upload the jar, the jar javadoc and ZugferdDev. You can also enter a changelog and a better title.

Release process

  • Update documentation
  • write/translate announcement
  • release via/for mvn
  • Publish a github release
  • update mustangproject.org RE
    • version number and release date
    • sample file?
    • Deployment jar
  • put announcement on usegroup
  • email the mailing list
  • freshcode.club
  • Submit on openpr.de/.com, https://www.einpresswire.com/