This is an automated email from the ASF dual-hosted git repository.
ilgrosso pushed a commit to branch 3_0_X
in repository https://gitbox.apache.org/repos/asf/syncope.git
The following commit(s) were added to refs/heads/3_0_X by this push:
new 381e988856 Upgrading maven-dependency-plugin, maven-checkstyle-plugin
and maven-jxr-plugin
381e988856 is described below
commit 381e988856c4a65a185e27f1d3e15c1e26193317
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Sat Oct 26 07:57:47 2024 +0200
Upgrading maven-dependency-plugin, maven-checkstyle-plugin and
maven-jxr-plugin
---
pom.xml | 6 +++---
.../reference-guide/configuration/highavailability.adoc | 14 ++++++++++++--
2 files changed, 15 insertions(+), 5 deletions(-)
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.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
- <version>3.8.0</version>
+ <version>3.8.1</version>
<configuration>
<outputDirectory>${bundles.directory}</outputDirectory>
<artifactItems>
@@ -1743,7 +1743,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>3.5.0</version>
+ <version>3.6.0</version>
<configuration>
<configLocation>${rootpom.basedir}/src/main/resources/org/apache/syncope/checkstyle.xml</configLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
@@ -2123,7 +2123,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
- <version>3.5.0</version>
+ <version>3.6.0</version>
</plugin>
</plugins>
</reporting>
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"]
+----
+<dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-pool2</artifactId>
+</dependency>
+----
[WARNING]
====