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
+2 -1
View File
@@ -13,7 +13,8 @@
.idea/usage.statistics.xml
.idea/checkstyle-idea.xml
**/*.iml
docs/**/*.zip
*/docs
# Package Files #
*.jar
+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"
Binary file not shown.
+1 -1
View File
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.5) on Sat Apr 18 18:42:15 EDT 2020 -->
<!-- Generated by javadoc (11.0.5) on Sun Apr 26 18:36:40 EDT 2020 -->
<title>ACF (Bukkit) 0.5.0-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.5) on Sat Apr 18 18:42:17 EDT 2020 -->
<!-- Generated by javadoc (11.0.5) on Sun Apr 26 18:31:03 EDT 2020 -->
<title>ACF (Bungee) 0.5.0-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.5) on Sat Apr 18 18:41:55 EDT 2020 -->
<!-- Generated by javadoc (11.0.5) on Sun Apr 26 18:36:36 EDT 2020 -->
<title>ACF (Core) 0.5.0-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.5) on Sat Apr 18 18:42:18 EDT 2020 -->
<!-- Generated by javadoc (11.0.5) on Sun Apr 26 18:31:13 EDT 2020 -->
<title>ACF (JDA) 0.5.0-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.5) on Sat Apr 18 18:42:59 EDT 2020 -->
<!-- Generated by javadoc (11.0.5) on Sun Apr 26 18:31:25 EDT 2020 -->
<title>ACF (Paper) 0.5.0-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('co/aikar/commands/package-summary.html')</script>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.5) on Sat Apr 18 18:42:18 EDT 2020 -->
<!-- Generated by javadoc (11.0.5) on Sun Apr 26 18:31:08 EDT 2020 -->
<title>ACF (Sponge) 0.5.0-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (11.0.5) on Sat Apr 18 18:43:22 EDT 2020 -->
<!-- Generated by javadoc (11.0.5) on Sun Apr 26 18:31:18 EDT 2020 -->
<title>ACF (Velocity) 0.5.0-SNAPSHOT API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript">window.location.replace('index.html')</script>
Binary file not shown.
Binary file not shown.
+2 -1
View File
@@ -130,10 +130,11 @@
<configuration>
<destDir>../docs/${project.artifactId}/</destDir>
<quiet>true</quiet>
<detectOfflineLinks>false</detectOfflineLinks>
<notimestamp>true</notimestamp>
<linksource>true</linksource>
<nohelp>true</nohelp>
<additionalparam>-Xdoclint:none</additionalparam>
<doclint>none</doclint>
<source>8</source>
</configuration>
<executions>