Skip to content

Commit

Permalink
Merge pull request #1664 from arjantijms/gfrunner_tx_2
Browse files Browse the repository at this point in the history
Added dependency to EJB 30 TCK, on which tests seem to depend.
  • Loading branch information
arjantijms authored Nov 19, 2024
2 parents e117193 + 18aea70 commit e4d16ea
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions glassfish-runner/transactions-tck/transactions-tck-run/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,11 @@
<artifactId>jta-tck</artifactId>
<version>${tck.version}</version>
</dependency>
<dependency>
<groupId>jakarta.tck</groupId>
<artifactId>ejb30</artifactId>
<version>${tck.version}</version>
</dependency>

<!-- Junit5 -->
<dependency>
Expand Down Expand Up @@ -103,8 +108,6 @@
<scope>test</scope>
</dependency>



<!--
The Arquillian protocol to use the application client container for testing
-->
Expand Down Expand Up @@ -154,7 +157,7 @@
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>jakarta.tck.arquillian</groupId>
<artifactId>arquillian-protocol-common</artifactId>
Expand Down Expand Up @@ -208,6 +211,8 @@
<phase>generate-resources</phase>
<configuration>
<artifactItems>

<!-- The application client container needs these two dependencies -->
<artifactItem>
<groupId>jakarta.tck.arquillian</groupId>
<artifactId>tck-porting-lib</artifactId>
Expand All @@ -222,6 +227,11 @@
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<destFileName>arquillian-protocol-lib.jar</destFileName>
</artifactItem>

<!--
AppClientDeploymentPackager needs this on the Eclipse CI since it can't fully resolve
jakarta.tck.arquillian:arquillian-protocol-lib in code for some reason.
-->
<artifactItem>
<groupId>jakarta.tck.arquillian</groupId>
<artifactId>arquillian-protocol-lib</artifactId>
Expand Down

0 comments on commit e4d16ea

Please sign in to comment.