On Thursday 18 Sep 2003 16:31, Joshi, Yogesh (Cognizant) wrote: > Maven is one level up to Ant in terms of Project Management capabilities. > But I am not very clear how they are represented. Does it mean, it > generates a consolidated report when I say "maven site" ?
Hi, You will get a website full of reports ... javadoc, checkstyle, test resports, etc etc in the same style as the Maven website ... look at the Project Documenttation and Project Info/Project Reports sections for examples. Look under target/docs when you have successfully run the "maven site" command. As for your error, in you project.xml you have specified <package>PlainJava.Maven</package> You should set this to the Java package name that you are building in your project. It is used in the javadoc process. > maven-javadoc-plugin:report: > [mkdir] Created dir: D:\SampleMaven\target\docs\apidocs > [mkdir] Created dir: D:\SampleMaven\target\javadoc > > BUILD FAILED > File...... file:/C:/Documents and > Settings/104487/.maven/plugins/maven-javadoc-p lugin-1.3-SNAPSHOT/ > Element... ant:javadoc > Line...... 98 > Column.... 60 > No source files and no packages have been specified. > Total time: 26 seconds And as for the other warnings, you need to create a file LICENSE.txt defining the licensing of your system -- Andy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
