Question

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?

Was it helpful?

Solution

You should use the finalName element:

<configuration>
    <finalName>myFinalName</finalName>
</configuration>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top