Maven EAR plugin, rename the app

后端 未结 1 1205
庸人自扰
庸人自扰 2020-12-17 07:06

I have a maven ear module.

For example, its artifact ID is MyApp. Maven creates ear archive whith name MyApp-1.0-SNAPSHOT.ear, Glassfish a

相关标签:
1条回答
  • 2020-12-17 07:51

    You should use the finalName element:

    <configuration>
        <finalName>myFinalName</finalName>
    </configuration>
    
    0 讨论(0)
提交回复
热议问题