Skip to content

Commit

Permalink
Add dependency to fix build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bvsharp committed Oct 6, 2023
1 parent 7e6cd5d commit 247b0a7
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,11 @@
<edge-common-spring.version>2.3.0-SNAPSHOT</edge-common-spring.version>
<openapi-generator.version>6.2.1</openapi-generator.version>
<mapstruct.version>1.5.2.Final</mapstruct.version>
<httpclient.version>4.5.14</httpclient.version>
<snakeyaml.version>2.0</snakeyaml.version>

<!-- test dependencies -->
<wiremock.version>2.35.0</wiremock.version>
<wiremock.version>3.2.0</wiremock.version>
<testcontainers.version>1.17.6</testcontainers.version>
<edge-common.version>4.4.3</edge-common.version>
<mockwebserver.version>4.11.0</mockwebserver.version>
Expand Down Expand Up @@ -136,6 +138,11 @@
<version>${mapstruct.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
</dependency>

<!-- Test dependencies -->
<dependency>
Expand All @@ -160,8 +167,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8</artifactId>
<groupId>org.wiremock</groupId>
<artifactId>wiremock</artifactId>
<version>${wiremock.version}</version>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -190,6 +197,18 @@
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<!-- Transitive dependency from folio-spring-base. Specifying newer version in order to remove vulnerabilities -->
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>

Expand Down

0 comments on commit 247b0a7

Please sign in to comment.