Table of Contents

Gradle - ext

Example

Kotlin

ext {
  set("variable","value")
}
val halloWorld= fun () {
   println("Hallo World");
}

project.ext.set("halloWorld",halloWorld)

Documentation / Reference