Skip to content

Commit 48e0cf1

Browse files
Upgraded pom to avoid vulnerabilities (#26)
- Updated the pom to comply with security, avoiding current vulnerabilities Signed-off-by: Leonardo Trevizo <leonardo.trevizo@encora.com>
1 parent eca633d commit 48e0cf1

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

pom.xml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.5.0</version>
8+
<version>3.5.6</version>
99
<relativePath/>
1010
</parent>
1111
<groupId>com.encorazone</groupId>
@@ -27,12 +27,14 @@
2727
<url/>
2828
</scm>
2929
<properties>
30+
<logback.version>1.5.19</logback.version>
3031
<java.version>17</java.version>
3132
<ojdbc.version>21.3.0.0</ojdbc.version>
32-
<springdoc.version>2.3.0</springdoc.version>
33+
<springdoc.version>2.8.13</springdoc.version>
3334
<lombok.version>1.18.38</lombok.version>
3435
<mapstruct.version>1.5.5.Final</mapstruct.version>
3536
<maven-compiler.version>3.14.0</maven-compiler.version>
37+
<commons-lang3.version>3.18.0</commons-lang3.version>
3638
</properties>
3739
<dependencies>
3840
<dependency>
@@ -86,11 +88,6 @@
8688
<artifactId>lombok</artifactId>
8789
<version>${lombok.version}</version>
8890
</dependency>
89-
<dependency>
90-
<groupId>com.h2database</groupId>
91-
<artifactId>h2</artifactId>
92-
<scope>test</scope>
93-
</dependency>
9491
<dependency>
9592
<groupId>org.mapstruct</groupId>
9693
<artifactId>mapstruct</artifactId>
@@ -127,11 +124,17 @@
127124
</annotationProcessorPaths>
128125
</configuration>
129126
</plugin>
130-
131127
<plugin>
132128
<groupId>org.springframework.boot</groupId>
133129
<artifactId>spring-boot-maven-plugin</artifactId>
134130
</plugin>
131+
<plugin>
132+
<groupId>org.apache.maven.plugins</groupId>
133+
<artifactId>maven-surefire-plugin</artifactId>
134+
<configuration>
135+
<argLine>-XX:+EnableDynamicAgentLoading -Xshare:off</argLine>
136+
</configuration>
137+
</plugin>
135138
</plugins>
136139
</build>
137140

0 commit comments

Comments
 (0)