Skip to content
This repository has been archived by the owner on Jan 22, 2020. It is now read-only.

Latest commit

 

History

History
23 lines (20 loc) · 690 Bytes

BUILDING.md

File metadata and controls

23 lines (20 loc) · 690 Bytes

To build pdfInvoice, Maven must be installed.

Running install without a profile will generate the pdfInvoice Community jars:

$ mvn clean install \
    -Dmaven.test.skip=true \
    -Dmaven.javadoc.failOnError=false \
    > >(tee mvn.log) 2> >(tee mvn-error.log >&2)

To run the tests, Ghostscript and Imagemagick must be installed.

$ mvn clean install \
    -Dmaven.test.failure.ignore=false \
    -DgsExec=$(which gs) \
    -DcompareExec=$(which compare) \
    -Dmaven.javadoc.failOnError=false \
    > >(tee mvn.log) 2> >(tee mvn-error.log >&2)