This is an automated email from the ASF dual-hosted git repository. jlmonteiro pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 587459be0739a287914ec94136a698be8903a4e7 Author: Jean-Louis Monteiro <[email protected]> AuthorDate: Mon Apr 25 10:42:50 2022 +0200 Remove MyFaces API because it's already in Mojorra jar and they aren't compatible. The beauty of specifications when APIs and IMPLs are coupled together. --- tomee/tomee-plume-webapp/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tomee/tomee-plume-webapp/pom.xml b/tomee/tomee-plume-webapp/pom.xml index 9e5f5e0623..9423945dc2 100644 --- a/tomee/tomee-plume-webapp/pom.xml +++ b/tomee/tomee-plume-webapp/pom.xml @@ -321,6 +321,10 @@ <groupId>${project.groupId}</groupId> <artifactId>jakartaee-api</artifactId> </exclusion> + <exclusion> + <groupId>org.apache.myfaces.core</groupId> + <artifactId>myfaces-api</artifactId> + </exclusion> </exclusions> </dependency>
