The project did not inherit from genesis' project-config because I could not prevent it from inheriting all the reports. I tried using <excludeDefaults> for the maven-project-info-plugin and that didn't work too.
Now I have it extending from project-config but I have to exclude all other unwanted reports by setting their inherited=false. Cheers Prasad On 1/31/07, Jason Dillon <[EMAIL PROTECTED]> wrote:
Any reason why this is extending 'genesis' and not 'project-config'? --jason On Jan 31, 2007, at 11:58 AM, [EMAIL PROTECTED] wrote: > Author: prasad > Date: Wed Jan 31 11:58:44 2007 > New Revision: 501969 > > URL: http://svn.apache.org/viewvc?view=rev&rev=501969 > Log: > * set parent to org.apache.geronimo.genesis:genesis > > Modified: > geronimo/samples/trunk/pom.xml > > Modified: geronimo/samples/trunk/pom.xml > URL: http://svn.apache.org/viewvc/geronimo/samples/trunk/pom.xml? > view=diff&rev=501969&r1=501968&r2=501969 > ====================================================================== > ======== > --- geronimo/samples/trunk/pom.xml (original) > +++ geronimo/samples/trunk/pom.xml Wed Jan 31 11:58:44 2007 > @@ -19,6 +19,12 @@ > --><!-- $Rev$ $Date$ --><project xmlns="http://maven.apache.org/ > POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http:// > maven.apache.org/maven-v4_0_0.xsd"> > <modelVersion>4.0.0</modelVersion> > > + <parent> > + <groupId>org.apache.geronimo.genesis</groupId> > + <artifactId>genesis</artifactId> > + <version>1.1</version> > + </parent> > + > <groupId>org.apache.geronimo.samples</groupId> > <artifactId>samples</artifactId> > <name>Geronimo Samples</name> > @@ -39,8 +45,6 @@ > </modules> > > <build> > - <defaultGoal>install</defaultGoal> > - > <plugins> > <plugin> > <groupId>org.apache.maven.plugins</groupId> > >
