Skip to content

Simple, no overhead Java wrapper for the LibreOffice UNO API

License

Notifications You must be signed in to change notification settings

LibreOffice/UNOHelper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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