Skip to content

Commit

Permalink
feat: jersey-client added as test dependency (#113)
Browse files Browse the repository at this point in the history
Refs: #112
  • Loading branch information
grigoriev authored Aug 7, 2024
1 parent 78dc7d8 commit d0c48eb
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
<jaxb.impl.version>2.4.0-b180830.0438</jaxb.impl.version>
<istack.version>4.2.0</istack.version>
<log4j.version>2.23.1</log4j.version>
<jackson.annotations.version>2.17.2</jackson.annotations.version>

<!-- JaCoCo -->
<jacoco.version>0.8.12</jacoco.version>
Expand Down Expand Up @@ -440,6 +441,24 @@
<version>${jersey.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>${jersey.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-jaxb-annotations</artifactId>
<version>${jackson.annotations.version}</version>
<scope>test</scope>
</dependency>

<!-- Others -->
<dependency>
Expand Down

0 comments on commit d0c48eb

Please sign in to comment.