Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TOMEE-4160 Setup CDI 4.0.7 TCK for Jakarta EE 10 #1001

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 48 additions & 9 deletions tck/cdi-embedded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,45 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>cdi-tck-web-impl</artifactId>
<version>${cdi-tck.version}</version>
<exclusions>
<exclusion>
<groupId>jakarta.xml.soap</groupId>
<artifactId>jakarta.xml.soap-api</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.inject</groupId>
<artifactId>jakarta.inject</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.faces</groupId>
<artifactId>jsf-api</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.transaction</groupId>
<artifactId>jta</artifactId>
</exclusion>
<exclusion>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.arquillian.testng</groupId>
<artifactId>arquillian-testng-container</artifactId>
Expand Down Expand Up @@ -275,15 +314,15 @@
<useFile>false</useFile>
<disableXmlReport>false</disableXmlReport>
<excludedGroups>javaee-full,se</excludedGroups>
<dependenciesToScan>
<dependency>jakarta.enterprise:cdi-tck-core-impl</dependency>
<dependency>jakarta.enterprise:cdi-tck-web-impl</dependency>
</dependenciesToScan>
<!-- easier to debug
<suiteXmlFiles>
<suiteXmlFile>${testngSuiteXml}</suiteXmlFile>
</suiteXmlFiles>
-->
<dependenciesToScan>
<dependency>jakarta.enterprise:cdi-tck-core-impl</dependency>
<dependency>jakarta.enterprise:cdi-tck-web-impl</dependency>
</dependenciesToScan>
<!-- easier to debug
<suiteXmlFiles>
<suiteXmlFile>${testngSuiteXml}</suiteXmlFile>
</suiteXmlFiles>
-->
<properties>
<property> <!-- broken cause @RequestScoped beans are parameters and testng logs parameters -->
<name>usedefaultlisteners</name>
Expand Down
8 changes: 4 additions & 4 deletions tck/cdi-signature-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@
<artifactItem>
<groupId>jakarta.enterprise</groupId>
<artifactId>cdi-tck-core-impl</artifactId>
<classifier>sigtest-jdk11</classifier>
<type>sig</type>
<classifier>sigtest-jdk11</classifier>
<type>sig</type>
<version>${cdi-tck.version}</version>
<overWrite>true</overWrite>
</artifactItem>
</artifactItems>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/api-signature</outputDirectory>
</configuration>
</execution>
Expand Down
Loading