How do I configure Spring Boot Gradle plugin 2 to disable the Boot distribution in Gradle Script Kotlin.
The distribution i want is a assembly bundle zip with all depend
this work for me (disable spring-boot bootJar task, and enable jar)
apply plugin: 'java' bootJar { enabled = false }