I took a stab at the conversion ... but it crashed and burned pretty readily. Gradle here I come!
On Fri, Oct 22, 2010 at 9:32 PM, Mark W. Shead <[email protected]> wrote: > Maven 3 took out the reports and they are now configured under the > maven-site-plugin. It looks like the reports are now plugins of > maven-site-plugin instead of maven directly. So you have to do > something like: > > > <build> > <plugins> > <plugin> > > <groupId>org.apache.maven.plugins</groupId> > <artifactId>maven-site-plugin</artifactId> > <version>3.0</version> > <configuration> > <reportPlugins> > <plugin> > > <groupId>org.codehaus.mojo</groupId> > > <artifactId>javancss-maven-plugin</artifactId> > > <version>2.0-beta-2</version> > </plugin> > <plugin> > > <groupId>org.apache.maven.plugins</groupId> > > <artifactId>maven-javadoc-plugin</artifactId> > <version>2.7</version> > </plugin> > <plugin> > > <groupId>org.apache.maven.plugins</groupId> > > <artifactId>maven-jxr-plugin</artifactId> > <version>2.1</version> > <configuration> > > <aggregate>true</aggregate> > </configuration> > </reportPlugins> > </configuration> > </plugin> > </plugins> > </build> > > Also, as far as I can find, Hudson doesn't directly support Maven 3 > yet. It can be done with a freestyle project, but there isn't a Maven > 3 plugin. > > I tried switching a few of my projects over to Maven 3, but decided to > wait for Hudson and some other tools to support it first. > > Mark > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Howard M. Lewis Ship Creator of Apache Tapestry The source for Tapestry training, mentoring and support. Contact me to learn how I can get you up and productive in Tapestry fast! (971) 678-5210 http://howardlewisship.com
