Maven / Maven Interview questions II
Maven: How do I rename the war file for the project?
use the finalName tag to define/change the name of the war file in the web module that produces the war. See the below example.
<build> <finalName>MyWebApp</finalName> . . . </build>
More Related questions...