diff --git a/pom.xml b/pom.xml index 3f0af78dcb..cb91a75723 100644 --- a/pom.xml +++ b/pom.xml @@ -1569,7 +1569,7 @@ under the License. org.apache.maven.plugins maven-dependency-plugin - 3.8.0 + 3.8.1 ${bundles.directory} @@ -1743,7 +1743,7 @@ under the License. org.apache.maven.plugins maven-checkstyle-plugin - 3.5.0 + 3.6.0 ${rootpom.basedir}/src/main/resources/org/apache/syncope/checkstyle.xml true @@ -2123,7 +2123,7 @@ under the License. org.apache.maven.plugins maven-jxr-plugin - 3.5.0 + 3.6.0 diff --git a/src/main/asciidoc/reference-guide/configuration/highavailability.adoc b/src/main/asciidoc/reference-guide/configuration/highavailability.adoc index 0186816a39..040175b998 100644 --- a/src/main/asciidoc/reference-guide/configuration/highavailability.adoc +++ b/src/main/asciidoc/reference-guide/configuration/highavailability.adoc @@ -34,8 +34,18 @@ The default configuration in `core.properties` is persistence.remoteCommitProvider=sjvm .... -which is suited for single JVM installations; with multiple instances, more options like as TCP or JMS are available; -see the OpenJPA documentation for reference. +which is suited for single JVM installations; with multiple instances, more options like as TCP, JMS or Kubernetes +are available; see the OpenJPA documentation for reference. + +With multiple instances, ensure to add the following dependency to `core/pom.xml`: + +[source,xml,subs="verbatim,attributes"] +---- + + org.apache.commons + commons-pool2 + +---- [WARNING] ====