Christoph Läubrich created MNG-7755:
---------------------------------------
Summary: If a plugin is an extension, the managed version is
ignored
Key: MNG-7755
URL: https://issues.apache.org/jira/browse/MNG-7755
Project: Maven
Issue Type: Bug
Reporter: Christoph Läubrich
I have the following in a child pom:
{code} <build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-bnd-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
{code}
and in the parent:
{code}<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-bnd-plugin</artifactId>
<version>${tycho.version}</version>
</plugin>
</plugins>
</pluginManagement>{code}
This gives an warning (and alter an error):
[WARNING] 'build.plugins.plugin.version' for org.eclipse.tycho:tycho-bnd-plugin
is missing.
If I write directly in the child
{code} <build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-bnd-plugin</artifactId>
<version>${tycho.version}</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
{code}
it works ... it seems to be triggered by the <extensions>true</extensions> tag
here that it then do not look at ate managed version...
--
This message was sent by Atlassian Jira
(v8.20.10#820010)