Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The javadocs should be generated under the correct branch so that they are tagged properly. To generate the javadocs, go to each project directory (that has user APIs) and run.

Code Block
mvn clean install javadoc:aggregate -DskipTests
mvn site -f tez-api
mvn site -f tez-mapreduce
mvn site -f tez-runtime-library

The javadocs would be created under target/site/apidocs inside each project directory. Spot check the javadocs for obvious errors. Create a new folder x.y.z under the releases directory in the svn site repo and copy release-notes and apidocs from all the projects into that directory. The website is built from the git repo but the javadocs etc are committed only to svn to reduce the size of the git repo.

...