Skip to content

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")
}

About

An easy to use Kotlin DSL to build Excel documents

Topics

Resources

License

Stars

Watchers

Forks

Languages