Skip to content

An easy to use Kotlin DSL to build Excel documents

License

Notifications You must be signed in to change notification settings

aPureBase/ExcelDSL

Repository files navigation

ExcelDSL

Maven Central

An easy-to-use Kotlin DSL to build Excel documents

val file: File = excel {
  sheet {
    row {
      cell("Hello")
      cell("World!")
    }
    row(2)
    row {
      emptyCell(3)
      cell("Here!")
    }
  }
}

Installation

Installation via Kotlin Gradle Script

repositories {
    mavenCentral()
}
dependencies {
  implementation("com.apurebase:ExcelDSL:$version")
}