I am using Spring Boot 2 in my Gradle project to do a build to jar in Jenkins, and I would like to change the name of that jar file.
By default, Spring Boot 2 used the G
Thanks to @AndyWilkinson for the answer!
bootJar { baseName "jarName" launchScript() }
.
springBoot { buildInfo { properties { group = "groupName" name = "projectName" version = "1.0" } } }