This is an automated email from the ASF dual-hosted git repository. ahuber pushed a commit to branch spring6 in repository https://gitbox.apache.org/repos/asf/isis.git
commit c63731a8c214087bd88ccd1c6224a96469c78607 Author: Andi Huber <[email protected]> AuthorDate: Sun Nov 13 12:27:11 2022 +0100 ISIS-3275: persistence convergence fixes --- persistence/jpa/eclipselink/pom.xml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/persistence/jpa/eclipselink/pom.xml b/persistence/jpa/eclipselink/pom.xml index febeb6f01f..41e6907e87 100644 --- a/persistence/jpa/eclipselink/pom.xml +++ b/persistence/jpa/eclipselink/pom.xml @@ -93,7 +93,7 @@ </exclusions> </dependency> <dependency> - <!-- provides javax.el.* --> + <!-- provides jakarta.el.* --> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> <version>5.0.1</version> @@ -114,8 +114,12 @@ <artifactId>hibernate-core</artifactId> </exclusion> <exclusion> - <groupId>javax.validation</groupId> - <artifactId>validation-api</artifactId> + <groupId>jakarta.inject</groupId> + <artifactId>jakarta.inject-api</artifactId> + </exclusion> + <exclusion> + <groupId>jakarta.interceptor</groupId> + <artifactId>jakarta.interceptor-api</artifactId> </exclusion> <exclusion> <!-- we use log4j-2 instead -->
