You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Stevo Slavic (JIRA)" <ji...@codehaus.org> on 2010/08/24 11:15:32 UTC

[jira] Commented: (MECLIPSE-36) use project.build.finalName for WTP context-root (if specified)

    [ http://jira.codehaus.org/browse/MECLIPSE-36?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=232921#action_232921 ] 

Stevo Slavic commented on MECLIPSE-36:
--------------------------------------

eclipse-maven-plugin:2.8 can be configured via [wtpContextName|http://maven.apache.org/plugins/maven-eclipse-plugin/eclipse-mojo.html#wtpContextName] parameter to use project.build.finalName as context name e.g.

{code:title=pom.xml|borderStyle=solid}
...
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-eclipse-plugin</artifactId>
  <configuration>
    <wtpContextName>${project.build.finalName}</wtpContextName>
  </configuration>
</plugin>
...
{code}

> 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
>          Issue Type: Bug
>    Affects Versions: 2.0
>         Environment: java on linux, maven 2.0
>            Reporter: Dan Allen
>            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