[
https://issues.apache.org/jira/browse/MNG-7755?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17716552#comment-17716552
]
Zhongming Hua edited comment on MNG-7755 at 4/26/23 6:40 AM:
-------------------------------------------------------------
[~laeubi]
Under version 3.8.8, I tried to reproduce the problem according to your new
description, but there is still no WARNING message.
was (Author: crazyhzm):
[~laeubi]
Under version 3.8.8, I reproduced the problem according to your new
description, but there is still no WARNING message.
> 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
> Priority: Major
>
> I have the following in a child pom:
> {code} <build>
> <plugins>
> <plugin>
> <groupId>org.eclipse.tycho</groupId>
> <artifactId>tycho-bnd-plugin</artifactId>
> <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)