Spring Boot 2 - Change Jar Name

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

    You can also use:

    tasks.bootJar {
        archiveFileName.set("app.jar")
    }
    

    Or with the jar-plugin

    tasks.jar {
        archiveFileName.set("app.jar")
    }
    

提交回复
热议问题