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 9367ee0 commit 964b7c9
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion 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>
<groupId>it.finanze.sanita.fse2</groupId>
Expand All @@ -27,6 +27,7 @@
<sonar.organization>ministero-salute</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.exclusions>src/main/java/it/finanze/sanita/fse2/ms/gtwpublisher/logging/**/*.*</sonar.exclusions>
<logback.version>1.2.13</logback.version>
</properties>

<dependencies>
Expand All @@ -35,6 +36,12 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
Expand Down Expand Up @@ -68,6 +75,12 @@
<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>


Expand Down Expand Up @@ -101,10 +114,12 @@
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
<version>2.9.11</version>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka-test</artifactId>
<version>2.9.11</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -137,6 +152,12 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.10.4</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down

0 comments on commit 964b7c9

Please sign in to comment.