Spring Boot 2 - Change Jar Name

后端 未结 8 1735
耶瑟儿~
耶瑟儿~ 2021-02-06 23:29

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

8条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-07 00:32

    Most people simply want to not have the version in the jar name, not change the name completely.

    tasks.withType {
        archiveVersion.set("")
    }
    

    will do it using Kotlin DSL. The final name is given by tasks.bootJar.get().archiveFileName.get().

提交回复
热议问题