How to add a dependency to Maven
Add the following top.yumbo.excel : excel-import-export maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>top.yumbo.excel</groupId>
<artifactId>excel-import-export</artifactId>
<version>1.3.22</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following top.yumbo.excel : excel-import-export gradle dependency to your build.gradle
file:
implementation 'top.yumbo.excel:excel-import-export:1.3.22'
Gradle Kotlin DSL: Add the following top.yumbo.excel : excel-import-export gradle kotlin dependency to your build.gradle.kts
file:
implementation("top.yumbo.excel:excel-import-export:1.3.22")
How to add a dependency to SBT Scala
SBT Scala: Add the following top.yumbo.excel : excel-import-export sbt scala dependency to your build.sbt
file:
libraryDependencies += "top.yumbo.excel" % "excel-import-export" % "1.3.22"