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]
