export EXIFTOOL=/myinstallhome/exiftool
The metadata mapper uses the exiftool (<http://www.sno.phy.queensu.ca/~phil/exiftool/>) to modify the images accordingly. This tool needs to be installed and has to be referred either in the execution path or by an environment variable named EXIFTOOL.
For example:
export EXIFTOOL=/myinstallhome/exiftool
Alternatively you may setup a java system property:
-Dexiftool.path=/myinstallhome/exiftool
Via code you may directly call the wrapper in order to specify the path:
de.dpa.oss.metadata.mapper.imaging.backend.exiftoolExifToolWrapper.setPathToExifTool("/myinstallhome/exiftool")
Run
mvn -P executable clean package
creates a jar containg all dependencies
Run
mvn clean package