Quarkus POI

This extension enables you to use Apache POI in your Quarkus application.

Apache POI is a Java API for Microsoft Documents. It allows Java programs to read and write files in Microsoft Office formats, such as Word, Excel and PowerPoint. It also allows programs to create new files in these formats. It is an open source project and is available under the Apache License.

Installation

If you want to use this extension, you need to add the io.quarkiverse.poi:quarkus-poi extension first to your build file.

For instance, with Maven, add the following dependency to your POM file:

<dependency>
    <groupId>io.quarkiverse.poi</groupId>
    <artifactId>quarkus-poi</artifactId>
    <version>1.0.6</version>
</dependency>