[ 
http://jira.codehaus.org/browse/MECLIPSE-667?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Barrie Treloar updated MECLIPSE-667:
------------------------------------

    Affects Version/s: 2.1
        Fix Version/s:     (was: 2.1)
             Assignee:     (was: fabrizio giustina)

> (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, 2.1
>         Environment: java on linux, maven 2.0
>            Reporter: Barrie Treloar
>
> 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

        

Reply via email to