is it possible to use the maven release plugin with a multi-module project, where some of the inter-module dependencies are specified using a parameter from the parent pom?

When I try to call release:prepare i get the following error:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.1:prepare (default-cli) on project forest-parent: The version could not be updated: ${some.version} -> [Help 1]

Here is my plugin definition:

<plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-release-plugin</artifactId>
            <version>2.1</version>
            <configuration>
                <goals>deploy</goals>
                <tagBase>https://svn.domain.com/svn/project/tags</tagBase>
                <autoVersionSubmodules>true</autoVersionSubmodules>
                <tagNameFormat>@{project.version}</tagNameFormat>
            </configuration>
        </plugin>

Thanks in advance!

link|improve this question
You can answer your own question with your solution and mark it as correct - that way the question will not be "unanswered" anymore plus people get the chance to upvote your answer as well :-) – Jan Mar 16 at 10:23
feedback

1 Answer

up vote 1 down vote accepted

The plugin currently doesn't support parameterized versions from parent (tried v2.2.2 as well). The solution was to use {project.version}.

link|improve this answer
Oddly, indirect properties do not work. In other words, if I defined <some.version>${project.version}</some.version> and then try to use ${some.version} on the <dependency> itself, it doesn't work. But using ${project.version} directly in the dependency does. – Ben May 8 at 20:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.