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
MyApp
MyApp-1.0-SNAPSHOT.ear
You should use the finalName element:
<configuration> <finalName>myFinalName</finalName> </configuration>