Actually, the maven-compiler-plugin for some reasons ended up in the <reporting> section of the parent POM, which probably explains your troubles with recent Maven versions... We should clean this up and remove the maven-compiler-plugin declaration from the reporting section.
Andreas On Mon, Nov 9, 2009 at 23:09, <d...@apache.org> wrote: > Author: dims > Date: Mon Nov 9 22:09:14 2009 > New Revision: 834254 > > URL: http://svn.apache.org/viewvc?rev=834254&view=rev > Log: > looks like latest maven needs source/target specified > > Modified: > webservices/commons/trunk/modules/transport/modules/parent/pom.xml > > Modified: webservices/commons/trunk/modules/transport/modules/parent/pom.xml > URL: > http://svn.apache.org/viewvc/webservices/commons/trunk/modules/transport/modules/parent/pom.xml?rev=834254&r1=834253&r2=834254&view=diff > ============================================================================== > --- webservices/commons/trunk/modules/transport/modules/parent/pom.xml > (original) > +++ webservices/commons/trunk/modules/transport/modules/parent/pom.xml Mon > Nov 9 22:09:14 2009 > @@ -24,7 +24,7 @@ > <parent> > <groupId>org.apache</groupId> > <artifactId>apache</artifactId> > - <version>3</version> > + <version>6</version> > </parent> > > <groupId>org.apache.axis2</groupId> > @@ -200,6 +200,14 @@ > <build> > <plugins> > <plugin> > + <groupId>org.apache.maven.plugins</groupId> > + <artifactId>maven-compiler-plugin</artifactId> > + <configuration> > + <source>1.5</source> > + <target>1.5</target> > + </configuration> > + </plugin> > + <plugin> > <artifactId>maven-assembly-plugin</artifactId> > <configuration> > <descriptors> > > >