Skip to content

Commit

Permalink
build(fix): vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaDel03 committed Nov 14, 2024
1 parent 570beb3 commit b1ac2a5
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
<version>2.7.18</version>
<relativePath />
<!-- lookup parent from repository -->
</parent>
Expand All @@ -32,6 +32,7 @@
<sonar.exclusions>
src/main/java/it/finanze/sanita/fse2/ms/gtwfhirmappingenginems/config/**/*.*
</sonar.exclusions>
<logback.version>1.2.13</logback.version>
</properties>

<dependencies>
Expand All @@ -40,6 +41,12 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>


Expand Down Expand Up @@ -124,8 +131,16 @@
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.6.11</version>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>



<!-- JSOUP -->
<dependency>
<groupId>org.jsoup</groupId>
Expand All @@ -146,7 +161,13 @@
<dependency>
<groupId>ca.uhn.hapi.fhir</groupId>
<artifactId>org.hl7.fhir.validation</artifactId>
<version>5.6.88</version>
<version>6.3.23</version>
<exclusions>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- SHEDLOCK -->
Expand Down Expand Up @@ -178,6 +199,12 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.5</version>
<scope>compile</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit b1ac2a5

Please sign in to comment.