Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.03 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.03 KB

UNOHelper

UNOHelper offers helper functions for working with the LibreOffice UNO API.

It wraps commonly used functions from the UNO API for easier use.

Build

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

Release

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