Index: dev-support/test-patch.sh =================================================================== --- dev-support/test-patch.sh (revision 1459878) +++ dev-support/test-patch.sh (working copy) @@ -695,9 +695,9 @@ echo "" echo "" - echo "$MVN compile site -N -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1" + echo "$MVN compile site -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1" export MAVEN_OPTS="${MAVEN_OPTS}" - $MVN compile site -N -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1 + $MVN compile site -DskipTests -D${PROJECT_NAME}PatchProcess > $PATCH_DIR/patchSiteOutput.txt 2>&1 if [[ $? != 0 ]] ; then JIRA_COMMENT="$JIRA_COMMENT Index: pom.xml =================================================================== --- pom.xml (revision 1459878) +++ pom.xml (working copy) @@ -418,6 +418,14 @@ + org.apache.maven.plugins maven-javadoc-plugin ${javadoc.version} @@ -427,7 +435,6 @@ aggregate - pre-site Index: src/docbkx/developer.xml =================================================================== --- src/docbkx/developer.xml (revision 1459878) +++ src/docbkx/developer.xml (working copy) @@ -164,7 +164,7 @@ Building the HBase tarball Do the following to build the HBase tarball. Passing the -Prelease will generate javadoc and run the RAT plugin to verify licenses on source. - % MAVEN_OPTS="-Xmx2g" mvn clean site install assembly:assembly -DskipTests -Prelease + % MAVEN_OPTS="-Xmx2g" mvn clean install javadoc:aggregate site assembly:assembly -DskipTests -Prelease @@ -343,7 +343,7 @@ # Getting the javadoc into site is a little tricky. You have to build it independent, then # 'aggregate' it at top-level so the pre-site site lifecycle step can find it; that is # what the javadoc:javadoc and javadoc:aggregate is about. - $ MAVEN_OPTS=" -Xmx3g" mvn clean -DskipTests javadoc:javadoc javadoc:aggregate site site:stage -DstagingDirectory=/Users/stack/checkouts/hbase.apache.org/trunk + $ MAVEN_OPTS=" -Xmx3g" mvn clean -DskipTests javadoc:aggregate site site:stage -DstagingDirectory=/Users/stack/checkouts/hbase.apache.org/trunk # Check the deployed site by viewing in a brower. # If all is good, commit it and it will show up at http://hbase.apache.org #