Skip to content

Commit e9dd953

Browse files
Update pom.xml (#68)
* Update pom.xml * Update pom.xml * Update pom.xml * Update pom.xml * Update pom.xml * Update pom.xml Co-authored-by: Simon Laurenz <simon.laurenz@t-systems.com>
1 parent e202d52 commit e9dd953

File tree

2 files changed

+39
-24
lines changed

2 files changed

+39
-24
lines changed

owasp/suppressions.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,8 @@
2828
<!-- Vulnerability impacts WebFlux apps only and can be ignored here. -->
2929
<cve>CVE-2021-22118</cve>
3030
</suppress>
31+
<suppress>
32+
<notes>H2 is only used for Unit Testing. Version 2.x includes major breaking changes.</notes>
33+
<cve>CVE-2021-23463</cve>
34+
</suppress>
3135
</suppressions>

pom.xml

Lines changed: 35 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,26 @@
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2525
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2626
<!-- dependencies -->
27-
<owasp.version>6.1.1</owasp.version>
28-
<spring.boot.version>2.5.6</spring.boot.version>
29-
<spring.cloud.version>2020.0.4</spring.cloud.version>
30-
<spring.cloud.openfeign.version>3.0.5</spring.cloud.openfeign.version>
31-
<spring.test.version>5.3.5</spring.test.version>
32-
<spring.security.version>5.5.1</spring.security.version>
33-
<lombok.version>1.18.20</lombok.version>
34-
<liquibase.version>4.3.3</liquibase.version>
35-
<springdoc.version>1.5.12</springdoc.version>
27+
<owasp.version>6.5.0</owasp.version>
28+
<spring.boot.version>2.6.1</spring.boot.version>
29+
<spring.cloud.version>2021.0.0</spring.cloud.version>
30+
<spring.cloud.openfeign.version>3.1.0</spring.cloud.openfeign.version>
31+
<spring.test.version>5.3.12</spring.test.version>
32+
<spring.security.version>5.6.0</spring.security.version>
33+
<lombok.version>1.18.22</lombok.version>
34+
<liquibase.version>4.6.2</liquibase.version>
35+
<springdoc.version>1.6.0</springdoc.version>
3636
<junit.version>5.8.1</junit.version>
37-
<junit.vintage.version>5.8.1</junit.vintage.version>
3837
<pivotal.cfenv.version>2.3.0</pivotal.cfenv.version>
3938
<mapstruct.version>1.4.2.Final</mapstruct.version>
40-
<mockito.version>4.0.0</mockito.version>
41-
<bcpkix.version>1.68</bcpkix.version>
39+
<mockito.version>4.1.0</mockito.version>
40+
<bcpkix.version>1.70</bcpkix.version>
4241
<okhttp.version>4.9.2</okhttp.version>
43-
<shedlock.version>4.29.0</shedlock.version>
44-
<dgc.lib.version>1.1.3</dgc.lib.version>
42+
<shedlock.version>4.30.0</shedlock.version>
43+
<dgc.lib.version>1.1.7</dgc.lib.version>
4544
<sap.cloud.sdk.version>3.57.0</sap.cloud.sdk.version>
45+
<slf4j.version>1.7.32</slf4j.version>
46+
<log4j2.version>2.16.0</log4j2.version>
4647
<!-- plugins -->
4748
<plugin.checkstyle.version>3.1.2</plugin.checkstyle.version>
4849
<plugin.sonar.version>3.6.1.1688</plugin.sonar.version>
@@ -97,6 +98,21 @@
9798

9899
<dependencyManagement>
99100
<dependencies>
101+
<dependency>
102+
<groupId>org.apache.logging.log4j</groupId>
103+
<artifactId>log4j-to-slf4j</artifactId>
104+
<version>${log4j2.version}</version>
105+
</dependency>
106+
<dependency>
107+
<groupId>org.apache.logging.log4j</groupId>
108+
<artifactId>log4j-api</artifactId>
109+
<version>${log4j2.version}</version>
110+
</dependency>
111+
<dependency>
112+
<groupId>org.apache.logging.log4j</groupId>
113+
<artifactId>log4j-core</artifactId>
114+
<version>${log4j2.version}</version>
115+
</dependency>
100116
<dependency>
101117
<groupId>org.springframework.boot</groupId>
102118
<artifactId>spring-boot-dependencies</artifactId>
@@ -105,11 +121,11 @@
105121
<scope>import</scope>
106122
</dependency>
107123
<dependency>
108-
<groupId>org.springframework.cloud</groupId>
109-
<artifactId>spring-cloud-openfeign-dependencies</artifactId>
110-
<version>${spring.cloud.openfeign.version}</version>
111-
<type>pom</type>
112-
<scope>import</scope>
124+
<groupId>org.springframework.cloud</groupId>
125+
<artifactId>spring-cloud-openfeign-dependencies</artifactId>
126+
<version>${spring.cloud.openfeign.version}</version>
127+
<type>pom</type>
128+
<scope>import</scope>
113129
</dependency>
114130
<dependency>
115131
<groupId>org.springframework.cloud</groupId>
@@ -184,11 +200,6 @@
184200
<version>${junit.version}</version>
185201
<scope>test</scope>
186202
</dependency>
187-
<dependency>
188-
<groupId>org.junit.vintage</groupId>
189-
<artifactId>junit-vintage-engine</artifactId>
190-
<version>${junit.vintage.version}</version>
191-
</dependency>
192203
<dependency>
193204
<groupId>org.springframework.boot</groupId>
194205
<artifactId>spring-boot-starter-test</artifactId>

0 commit comments

Comments
 (0)