The Gradle DSL for layer configuration currently uses layers twice:
bootJar {
layers {
layers "dependencies", "snapshot-dependencies", "application"
…
}
}
We'd like to simplify this to avoid the repetition of layers, hopefully to something like the following:
bootJar {
layers("dependencies", "snapshot-dependencies", "application") {
…
}
}