diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 5004633307..5db20251e9 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -191,7 +191,7 @@ jobs: server-username: IGNITE_REALTIME_MAVEN_USERNAME server-password: IGNITE_REALTIME_MAVEN_PASSWORD - name: Publish - run: ./mvnw -B deploy + run: ./mvnw -B deploy -Pci -Dmaven.test.skip=true env: IGNITE_REALTIME_MAVEN_USERNAME: ${{ secrets.IGNITE_REALTIME_MAVEN_USERNAME }} IGNITE_REALTIME_MAVEN_PASSWORD: ${{ secrets.IGNITE_REALTIME_MAVEN_PASSWORD }} diff --git a/plugins/pom.xml b/plugins/pom.xml index c0d4e3398e..572b6538b4 100644 --- a/plugins/pom.xml +++ b/plugins/pom.xml @@ -146,7 +146,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.1.0 + 3.5.0 attach-javadocs diff --git a/pom.xml b/pom.xml index 61628315b7..cfee390d4d 100644 --- a/pom.xml +++ b/pom.xml @@ -171,7 +171,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.1.0 + 3.5.0 attach-javadocs @@ -181,7 +181,6 @@ - 11 true none diff --git a/xmppserver/pom.xml b/xmppserver/pom.xml index 37844ce902..b37a510e5e 100644 --- a/xmppserver/pom.xml +++ b/xmppserver/pom.xml @@ -21,7 +21,7 @@ org.jacoco jacoco-maven-plugin - 0.8.5 + 0.8.10 **/*_jsp.class diff --git a/xmppserver/src/main/java/org/jivesoftware/openfire/cluster/ClusteredCacheEntryListener.java b/xmppserver/src/main/java/org/jivesoftware/openfire/cluster/ClusteredCacheEntryListener.java index 793cfef22a..9bedfac26f 100644 --- a/xmppserver/src/main/java/org/jivesoftware/openfire/cluster/ClusteredCacheEntryListener.java +++ b/xmppserver/src/main/java/org/jivesoftware/openfire/cluster/ClusteredCacheEntryListener.java @@ -26,7 +26,7 @@ * Generally speaking, event listener invocation will always include the key value. For performance optimizations, * the value can be omitted. The behavior is configured when registering the listener with a cache. * - * An instance can be registered with a cache using {@link Cache#addListener(org.jivesoftware.openfire.cluster.ClusteredCacheEntryListener, boolean)} + * An instance can be registered with a cache using {@link Cache#addClusteredCacheEntryListener(ClusteredCacheEntryListener, boolean, boolean)} * * Listeners are invoked in an asynchronous fashion. It is possible that invocations occur in a different order than in * which the cache was modified.