From 43fe50a87fd67d4dcc4f77325684d35fa450a49c Mon Sep 17 00:00:00 2001 From: mohammed jasem alaajel Date: Thu, 14 Apr 2022 16:26:33 +0400 Subject: [PATCH] javadocs last changes hopefully --- RedisBungee-API/pom.xml | 5 +++-- .../minecraft/redisbungee/RedisBungeeAPI.java | 5 +++-- RedisBungee-BungeeEvents/pom.xml | 15 ++++++++++++++- makeJavadocs.sh | 3 +++ 4 files changed, 23 insertions(+), 5 deletions(-) create mode 100644 makeJavadocs.sh diff --git a/RedisBungee-API/pom.xml b/RedisBungee-API/pom.xml index 13592f1..60244fe 100644 --- a/RedisBungee-API/pom.xml +++ b/RedisBungee-API/pom.xml @@ -15,15 +15,16 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.3.0 + 3.3.2 8 + ../javadoc + ${project.name} - diff --git a/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeAPI.java b/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeAPI.java index 1ddbf20..42f84d0 100644 --- a/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeAPI.java +++ b/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeAPI.java @@ -180,7 +180,8 @@ public class RedisBungeeAPI { } /** - * Sends a message to a PubSub channel. The channel has to be subscribed to on this, or another redisbungee instance for {@link PubSubMessageEvent} to fire. + * Sends a message to a PubSub channel. The channel has to be subscribed to on this, or another redisbungee instance for + * PubSubMessageEvent to fire. * * @param channel The PubSub channel * @param message the message body to send @@ -213,7 +214,7 @@ public class RedisBungeeAPI { } /** - * Register (a) PubSub channel(s), so that you may handle {@link PubSubMessageEvent} for it. + * Register (a) PubSub channel(s), so that you may handle PubSubMessageEvent for it. * * @param channels the channels to register * @since 0.3 diff --git a/RedisBungee-BungeeEvents/pom.xml b/RedisBungee-BungeeEvents/pom.xml index e853888..119fea8 100644 --- a/RedisBungee-BungeeEvents/pom.xml +++ b/RedisBungee-BungeeEvents/pom.xml @@ -22,7 +22,20 @@ https://oss.sonatype.org/content/repositories/snapshots - + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.3.2 + + 8 + ../javadoc + ${project.name} + + + + diff --git a/makeJavadocs.sh b/makeJavadocs.sh new file mode 100644 index 0000000..27c0ba1 --- /dev/null +++ b/makeJavadocs.sh @@ -0,0 +1,3 @@ +rm -rf javadoc +mkdir javadoc +mvn javadoc:javadoc -pl RedisBungee-API,RedisBungee-BungeeEvents -am \ No newline at end of file