[ http://jira.codehaus.org/browse/MNG-3811?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Brett Porter updated MNG-3811: ------------------------------ Fix Version/s: 2.0.11 Patch Submitted: [Yes] > Report plugins don't inherit configuration > ------------------------------------------ > > Key: MNG-3811 > URL: http://jira.codehaus.org/browse/MNG-3811 > Project: Maven 2 > Issue Type: Bug > Components: POM > Affects Versions: 2.0.9, 2.0.11 > Environment: Ubuntu x64 > java version "1.6.0_0" > OpenJDK Runtime Environment (build 1.6.0_0-b11) > OpenJDK 64-Bit Server VM (build 1.6.0_0-b11, mixed mode) > Reporter: Nik Everett > Priority: Minor > Fix For: 2.0.11 > > Attachments: bug.tar.gz, MNG-3811-maven-project.patch > > > 'm trying to set up reporting plugin inheritance and not having any luck. > I'm using Maven 2.0.9 on Java 1.6.0_07. Here is my problem: > parent/pom.xml has > <reporting> > <plugins> > <plugin> > <artifactId>maven-javadoc-plugin</artifactId> > <configuration> > <silent>true</silent> > <links> > <link>parentLink</link> > </links> > </configuration> > </plugin> > </plugins> > </reporting> > child/pom.xml has > <reporting> > <plugins> > <plugin> > <artifactId>maven-javadoc-plugin</artifactId> > <configuration> > <links combine.children="append"> > <link>childLink</link> > </links> > </configuration> > </plugin> > </plugins> > </reporting> > After installing the parent, mvn help:effective-pom for the child yeilds: > <reporting> > <outputDirectory>target/site</outputDirectory> > <plugins> > <plugin> > <artifactId>maven-javadoc-plugin</artifactId> > <configuration> > <links> > <link>childLink</link> > </links> > </configuration> > </plugin> > </plugins> > </reporting> > I expected it to look like: > <reporting> > <outputDirectory>target/site</outputDirectory> > <plugins> > <plugin> > <artifactId>maven-javadoc-plugin</artifactId> > <configuration> > <silent>true</silent> > <links> > <link>parentLink</link> > <link>childLink</link> > </links> > </configuration> > </plugin> > </plugins> > </reporting> > I'd be happy to make a test case for this if someone would point me in the > right direction. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira