Skip to main content

Installation

Compatibility Information

The following table lists the minimum Java language version requirements for each version of the Fesod library:

VersionJDK Version Support RangeNotes
1.3.xJDK8 - JDK25
1.2.xJDK8 - JDK21
1.1.xJDK8 - JDK21
1.0.xJDK8 - JDK21

We strongly recommend using the latest version of Fesod, as performance optimizations, bug fixes, and new features in the latest version will enhance your experience.

Currently, Fesod uses POI as its underlying package. If your project already includes POI-related components, you will need to manually exclude POI-related jar files.

Version Update

For detailed update logs, refer to Details of version updates. You can also find all available versions in the Maven Central Repository.

Maven

If you are using Maven for project building, add the following configuration in the pom.xml file:


<dependency>
<groupId>org.apache.fesod</groupId>
<artifactId>fesod</artifactId>
<version>version</version>
</dependency>

Gradle

If you are using Gradle for project building, add the following configuration in the build.gradle file:

dependencies {
implementation 'org.apache.fesod:fesod:version'
}