Skip to main content

Installation

Compatibility Information​

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

VersionJDK Version Support RangeNotes
2.0.2-incubatingJDK8 - JDK25Apache Incubator release
2.0.1-incubatingJDK8 - JDK25Apache Incubator release
2.0.0-incubatingJDK8 - JDK25NA(not available)
1.3.xJDK8 - JDK25Non-Apache release
1.2.xJDK8 - JDK21Non-Apache release
1.1.xJDK8 - JDK21Non-Apache release
1.0.xJDK8 - JDK21Non-Apache release

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

Dependencies​

Apache Fesod(Incubating) uses the following key dependencies:

  • Apache POI 5.5.1 - For Excel file processing
  • Apache Commons CSV 1.14.1 - For CSV file support
  • Ehcache 3.9.11 - For caching functionality

If your project already includes POI-related components, you may need to manually exclude POI-related jar files to avoid version conflicts.

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-sheet</artifactId>
<version>2.0.2-incubating</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-sheet:2.0.2-incubating'
}