문제

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?

도움이 되었습니까?

해결책

You should use the finalName element:

<configuration>
    <finalName>myFinalName</finalName>
</configuration>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top