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 1924d02 commit 0382b33
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 @@ -11,7 +11,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 @@ -33,13 +33,20 @@
src/main/java/it/finanze/sanita/fse2/ms/gtw/rulesmanager/logging/*,
src/main/java/it/finanze/sanita/fse2/ms/gtw/rulesmanager/config/**/*,
</sonar.exclusions>
<logback.version>1.2.13</logback.version>
</properties>

<dependencies>
<!-- WEB -->
<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 @@ -73,6 +80,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>

<!-- LOGBACK JSON -->
Expand Down Expand Up @@ -126,10 +139,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 @@ -174,6 +189,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 0382b33

Please sign in to comment.