use project.build.finalName for WTP context-root (if specified)
---------------------------------------------------------------

         Key: MNG-1729
         URL: http://jira.codehaus.org/browse/MNG-1729
     Project: Maven 2
        Type: Improvement
  Components: maven-eclipse-plugin  
    Versions: 2.0    
 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]

Reply via email to