javadocs last changes hopefully

This commit is contained in:
mohammed jasem alaajel 2022-04-14 16:26:33 +04:00
parent dba8dc8ab7
commit 43fe50a87f
4 changed files with 23 additions and 5 deletions

View File

@ -15,15 +15,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.0</version>
<version>3.3.2</version>
<configuration>
<source>8</source>
<reportOutputDirectory>../javadoc</reportOutputDirectory>
<destDir>${project.name}</destDir>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
</dependencies>
<properties>

View File

@ -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

View File

@ -22,7 +22,20 @@
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<configuration>
<source>8</source>
<reportOutputDirectory>../javadoc</reportOutputDirectory>
<destDir>${project.name}</destDir>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>

3
makeJavadocs.sh Normal file
View File

@ -0,0 +1,3 @@
rm -rf javadoc
mkdir javadoc
mvn javadoc:javadoc -pl RedisBungee-API,RedisBungee-BungeeEvents -am