Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
ssylver93 committed Oct 8, 2024
1 parent e9cc94c commit 23cd18e
Showing 1 changed file with 29 additions and 25 deletions.
54 changes: 29 additions & 25 deletions server/wfprev-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
</scm>
<properties>
<java.version>17</java.version>
<jersey.version>3.1.3</jersey.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -115,11 +114,6 @@
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
Expand All @@ -131,18 +125,6 @@
<scope>test</scope>
</dependency>

<!-- Jersey -->
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring6</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.inject</groupId>
<artifactId>jersey-hk2</artifactId>
<version>${jersey.version}</version>
</dependency>

<!-- Common Software Framework -->
<dependency>
<groupId>ca.bc.gov.nrs.wfone.common</groupId>
Expand Down Expand Up @@ -193,6 +175,16 @@
<groupId>ca.bc.gov.nrs.wfone.common</groupId>
<artifactId>wfone-common-rest-endpoints</artifactId>
<version>1.4.1-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2</artifactId>
</exclusion>
<exclusion>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-jaxrs2-servlet-initializer-v2</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ca.bc.gov.nrs.wfone.common</groupId>
Expand All @@ -204,17 +196,11 @@
<artifactId>wfone-common-checkhealth</artifactId>
<version>1.4.1-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
<version>2.2.22</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core-jakarta</artifactId>
<version>2.2.22</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
Expand All @@ -225,6 +211,24 @@
<artifactId>sonar-maven-plugin</artifactId>
<version>4.0.0.4121</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
<artifactId>jersey-spring6</artifactId>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -330,4 +334,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 23cd18e

Please sign in to comment.