Spring Boot 2 - Change Jar Name

后端 未结 8 1763
耶瑟儿~
耶瑟儿~ 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:15

    Since bootJar tasks extends Jar you can use archiveName to set name the directly:

    bootJar {
       archiveName = 'whatever'
    }
    

    Have a look here.

提交回复
热议问题