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 217870dfe06365dca941ac447fa9141314ac8742 Author: Jean-Louis Monteiro <[email protected]> AuthorDate: Wed Mar 23 22:43:54 2022 +0100 Add some excludes to the TCK to make sure we use the same API --- tck/bval-tomee/pom.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tck/bval-tomee/pom.xml b/tck/bval-tomee/pom.xml index 88b1596..2b8b64e 100644 --- a/tck/bval-tomee/pom.xml +++ b/tck/bval-tomee/pom.xml @@ -84,6 +84,20 @@ <artifactId>beanvalidation-tck-tests</artifactId> <version>${bval-tck.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>jakarta.validation</groupId> + <artifactId>*</artifactId> + </exclusion> + <exclusion> + <groupId>jakarta.interceptor</groupId> + <artifactId>*</artifactId> + </exclusion> + <exclusion> + <groupId>jakarta.annotation</groupId> + <artifactId>*</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.jboss.arquillian.testng</groupId>
