Skip to content

Migration Guide 4.4.3

Simon Braconnier edited this page Sep 15, 2022 · 3 revisions

This guide discusses migration from JODConverter version 4.4.2 to version 4.4.3

New WEB document family.

There is a new document family for better web documents support.

See here for more details.

Provide builds of both OpenOffice and LibreOffice dependencies in the maven center

There is 2 new JODConverter modules published in the maven center allowing you to easily choose whether you want to use the LibreOffice dependencies or the OpenOffice dependencies in your project. Since the gap between LibreOffice and OpenOffice is increasing each year, you may want to rely only on LibreOffice dependencies, wich was not the default.

Usage for local conversions using LibreOffice dependencies

Gradle:

compile 'org.jodconverter:jodconverter-local-lo:4.4.3'

Maven:

<dependency>
  <groupId>org.jodconverter</groupId>
  <artifactId>jodconverter-local-lo</artifactId>
  <version>4.4.3</version>
</dependency>

Usage for local conversions using OpenOffice dependencies

Gradle:

compile 'org.jodconverter:jodconverter-local-oo:4.4.3'

or you can continue to use

compile 'org.jodconverter:jodconverter-local:4.4.3'

Maven:

<dependency>
  <groupId>org.jodconverter</groupId>
  <artifactId>jodconverter-local-oo</artifactId>
  <version>4.4.3</version>
</dependency>

or you can continue to use

<dependency>
  <groupId>org.jodconverter</groupId>
  <artifactId>jodconverter-local</artifactId>
  <version>4.4.3</version>
</dependency>
Clone this wiki locally