I\'m working on a Spring Boot app with multiple modules and we\'re using Gradle to build it. Unfortunately I can\'t get the Gradle configuration right.
The project stru
In your utility (data) projects put:
bootJar { enabled = false } jar { enabled = true }
If kotlin dsl
tasks.getByName("bootJar") { enabled = false } tasks.getByName("jar") { enabled = true }