Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 608 Bytes

README.md

File metadata and controls

34 lines (28 loc) · 608 Bytes

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