[ http://jira.codehaus.org/browse/MECLIPSE-36?page=all ]
Jason van Zyl moved MNG-1729 to MECLIPSE-36:
--------------------------------------------
Version: (was: 2.0)
type: Bug (was: Improvement)
Component: (was: maven-eclipse-plugin)
Workflow: jira (was: Maven)
Key: MECLIPSE-36 (was: MNG-1729)
Project: Maven 2.x Eclipse Plugin (was: Maven 2)
> use project.build.finalName for WTP context-root (if specified)
> ---------------------------------------------------------------
>
> Key: MECLIPSE-36
> URL: http://jira.codehaus.org/browse/MECLIPSE-36
> Project: Maven 2.x Eclipse Plugin
> Type: Bug
> Environment: java on linux, maven 2.0
> Reporter: Dan Allen
>
>
> 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
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]