You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Shawn Carrillo (JIRA)" <ji...@codehaus.org> on 2012/08/02 03:32:29 UTC

[jira] (MNG-2971) Variables are not replaced into installed pom file

    [ https://jira.codehaus.org/browse/MNG-2971?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=305237#comment-305237 ] 

Shawn Carrillo commented on MNG-2971:
-------------------------------------

@Christian Bauer - Just wanted to say thanks, just what I needed.

In case others are having the same problems with multi-module projects, I needed to make one small change for ear/war pom configs.
Under maven-install-plugin configuration, be sure to change <file></file> to the proper ear/war locations respectively.

ex:
<configuration>
<file>target/${project.artifactId}-${project.version}.war</file>
<pomFile>target/modified-pom-replacePomPlaceholder/modified-pom/pom.xml</pomFile>
</configuration>


Please also consider this replay a +1 for substitutions in the parent configuration.

<parent>
<groupId>com.example</groupId>
<artifactId>artifact</artifactId>
<version>${currentVersion}</version>
</parent>
                
> Variables are not replaced into installed pom file
> --------------------------------------------------
>
>                 Key: MNG-2971
>                 URL: https://jira.codehaus.org/browse/MNG-2971
>             Project: Maven 2 & 3
>          Issue Type: Bug
>          Components: Deployment, Inheritance and Interpolation
>         Environment: Windows, Solaris
> Maven version 2.0.4
>            Reporter: Laurent Dauvilaire
>            Assignee: Ralph Goers
>             Fix For: Issues to be reviewed for 3.x
>
>         Attachments: pom.xml
>
>
> Variables are not replaced into installed pom file.
> Here is a sample pom file
> <project xmlns="http://maven.apache.org/POM/4.0.0"
>          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
> 	<modelVersion>4.0.0</modelVersion>
> 	<groupId>com.xxx.root</groupId>
> 	<artifactId>root</artifactId>
> 	<packaging>pom</packaging>
> 	<version>${prop.version}</version>
> 	<name>My Project</name>
>         ...
> 	<properties>
> 		<prop.version>3.0.20</prop.version>
> 	</properties>
> </project>
> The installed pom is into ${localRepository}/com/xxx/root/root/3.0.20/root-3.0.20.pom
> is the same as the project pom file but the version referenced into the installed pom file is ${prop.version} instead of 3.0.20
> which creates problem to artifacts depending of this one.
> Thanks in advance

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira