Clean up JavaDocs (Deployed ACF)

No longer generate the zip files in git and use proper doclint flag
Speeds up javadoc generation fixing a bug in config
This commit is contained in:
Aikar
2020-04-26 18:04:48 -04:00
parent 1eddc2cb8b
commit bf9b81bf0e
31 changed files with 14 additions and 10 deletions
+3 -1
View File
@@ -2,9 +2,11 @@
if [ ! -z "$1" ]; then
cd $1 || exit 1
fi
mvn -T 4 clean javadoc:jar deploy || exit 1
mvn -T 4 clean deploy || exit 1
mvn -T1 javadoc:jar || exit 1
if [ ! -z "$1" ]; then
cd - || exit 1
fi
git add docs
git co docs/**/overview-summary.html docs/**/index.html
git commit docs -m "(DEPLOYED ACF) Updated JavaDocs"