Skip to content

Commit

Permalink
add dependencies to run tck independently (#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
alwin-joseph authored Mar 9, 2022
1 parent fdcd30c commit cdbc48b
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions jersey-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<jersey.version>3.1.0-M3</jersey.version>
<glassfish.container.version>6.2.3</glassfish.container.version>
<glassfish.container.version>6.2.5</glassfish.container.version>
<glassfish.home>${project.build.directory}/glassfish6</glassfish.home>
<jakarta.platform.version>9.1.0</jakarta.platform.version>
<jakarta.platform.version>10.0.0-RC1</jakarta.platform.version>
<junit.jupiter.version>5.7.2</junit.jupiter.version>
<jakarta.rest.version>3.1.0</jakarta.rest.version>
<tck.artifactId>jakarta-restful-ws-tck</tck.artifactId>
Expand Down Expand Up @@ -98,6 +98,20 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>jakarta.ws.rs</groupId>
<artifactId>jakarta.ws.rs-api</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.glassfish.main.common</groupId>
<artifactId>simple-glassfish-api</artifactId>
Expand Down Expand Up @@ -162,12 +176,6 @@
</dependencies>


<profiles>
<profile>
<id>arq-glassfish-managed</id>
</profile>
</profiles>

<build>
<plugins>
<plugin>
Expand Down

0 comments on commit cdbc48b

Please sign in to comment.