Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0-beta-1
-
Fix Version/s: 1.0
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
MTOMCAT-4 'breaks' what the documentation says in regards to overriding the finalName to set the war name:
http://mojo.codehaus.org/tomcat-maven-plugin/usage.html
section
Using a different context path
The only way to do this now is to override the path in configuration like this:
<configuration>
<path>/mycontext</path>
</configuration>
The workaround is actually this:
<configuration>
<path>/${project.build.finalName}</path>
</configuration>