add extraction of javadoc artifacts
diff --git a/TestNexus.sh b/TestNexus.sh
index 47a2ec3..a49e691 100755
--- a/TestNexus.sh
+++ b/TestNexus.sh
@@ -342,6 +342,15 @@
             error_cnt=`expr ${error_cnt} + 1`
         fi
         if [ "${DEBUG}" = "true" ] ; then
+            echo "Expanding javadoc from ${installzip}..."
+        fi
+        if [ -f ${installzip} ] ; then
+            unzip -o -j -q ${installzip} eclipselink/*javadoc* -d ${src}/maven
+        else
+            echo "${installzip} not found!"
+            error_cnt=`expr ${error_cnt} + 1`
+        fi
+        if [ "${DEBUG}" = "true" ] ; then
             echo "Long-listing of '${src}/maven':"
             ls -l ${src}/maven
         fi