(regression) use project.build.finalName for WTP context-root (if specified)
----------------------------------------------------------------------------
Key: MECLIPSE-667
URL: http://jira.codehaus.org/browse/MECLIPSE-667
Project: Maven 2.x Eclipse Plugin
Issue Type: Bug
Affects Versions: 2.0
Environment: java on linux, maven 2.0
Reporter: Barrie Treloar
Assignee: fabrizio giustina
Fix For: 2.1
When the regular maven build creates a *.war file, it honors the
project.build.finalName if specified. However, the maven-eclipse-plugin always
uses the artifactId of the project and therefore the *.war file generated by
eclipse is different than the one generated by maven.
The following code in EclipseWtpmodulesWriter.java can resolve the correct
context-root and should be used for setting the "deploy-name" and the
"context-root".
String contextRoot = project.getArtifactId();
String finalName = project.getBuild().getFinalName();
if ( !finalName.equals( project.getArtifactId() + "-" +
project.getVersion() ) ) {
contextRoot = finalName;
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira