How can I change the war name generated by maven assembly plugin

前端 未结 3 560
栀梦
栀梦 2020-12-23 11:18

How can I change the name from 1.0.snapshot-jar-with-dependencies to something else, below are contents of my POM:



        
3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-23 11:33

    You can achieve this by specifying the finalName property in your pom, e.g.

    
        something-else
        ...
    
    

提交回复
热议问题