May 2024
Intermediate to advanced
560 pages
16h 9m
English
This appendix explains how to build Kotlin code with Gradle and Maven, the two most popular build systems used with Kotlin projects.
The recommended system for building Kotlin projects is Gradle. Gradle has become the de facto standard build system for Kotlin projects. It has a flexible project model and delivers great build performance, thanks to its support for incremental builds, long-lived build processes (the Gradle daemon), and other advanced techniques.
Gradle allows you to specify your build scripts in either Kotlin or Groovy. Since Gradle has chosen the Kotlin syntax as its default and recommended approach for new build script projects, we also use it in this book. ...
Read now
Unlock full access