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
The following commit(s) were added to refs/heads/master by this push:
new 38e1e23480 Excluding commons-pool2 as transitive dependency from
OpenJPA
38e1e23480 is described below
commit 38e1e234806a57bcf61abc3576c95ec1663a8ae6
Author: Francesco Chicchiriccò <[email protected]>
AuthorDate: Wed Jul 24 08:11:24 2024 +0200
Excluding commons-pool2 as transitive dependency from OpenJPA
---
pom.xml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/pom.xml b/pom.xml
index b82f8d7ec2..a2313f08c4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -634,6 +634,12 @@ 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>