[ https://issues.apache.org/jira/browse/MNG-7755?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17716477#comment-17716477 ]
Zhongming Hua commented on MNG-7755: ------------------------------------ [~laeubi] Please provide the maven version used. > 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> > <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)