This is an automated email from the ASF dual-hosted git repository. ilgrosso pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/syncope.git
commit 556f806e58c0e31b8b442c82d46b10d36b64cc56 Author: Francesco Chicchiriccò <[email protected]> AuthorDate: Wed Oct 30 08:19:47 2024 +0100 Revert commons-pool2 exclusion --- pom.xml | 6 ------ .../reference-guide/configuration/highavailability.adoc | 10 ---------- 2 files changed, 16 deletions(-) diff --git a/pom.xml b/pom.xml index 23ca00fdf3..2251a1317b 100644 --- a/pom.xml +++ b/pom.xml @@ -640,12 +640,6 @@ under the License. <groupId>org.apache.openjpa</groupId> <artifactId>openjpa</artifactId> <version>${openjpa.version}</version> - <exclusions> - <exclusion> - <groupId>org.apache.commons</groupId> - <artifactId>commons-pool2</artifactId> - </exclusion> - </exclusions> </dependency> <dependency> <groupId>com.fasterxml.uuid</groupId> diff --git a/src/main/asciidoc/reference-guide/configuration/highavailability.adoc b/src/main/asciidoc/reference-guide/configuration/highavailability.adoc index 891db6ba41..920423f48e 100644 --- a/src/main/asciidoc/reference-guide/configuration/highavailability.adoc +++ b/src/main/asciidoc/reference-guide/configuration/highavailability.adoc @@ -37,16 +37,6 @@ persistence.remoteCommitProvider=sjvm 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] ==== The https://openjpa.apache.org/builds/3.2.2/apache-openjpa/docs/ref_guide_event.html[OpenJPA documentation^]'s XML
