UNOHelper offers helper functions for working with the LibreOffice UNO API.
It wraps commonly used functions from the UNO API for easier use.
The following applications have to be installed to compile UNOHelper:
First fetch the sources:
git clone https://github.com/LibreOffice/UNOHelper.git
Then build the package:
mvn clean package
To create a single jar (to be used in non-Maven projects), run this command instead:
mvn clean assembly:single
First, make sure that Javadoc has no errors (warnings are ok though):
mvn javadoc:javadoc
Then do a dry run:
mvn -Dresume=false -DdryRun=true release:prepare
Now do the release. Caution: This creates two commits & a tag and pushes them directly to Git!)
mvn -Dresume=false release:prepare release:perform