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 admin panel show deployed app with name MyApp
I want to change default name. I tried this:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>2.8</version>
<configuration>
<displayName>mySuperName</displayName>
</configuration>
</plugin>
But it changes only one string inside the application.xml:
<display-name>mySuperName</display-name>
Does I have any other options to rename the app?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…