Skip to content

Commit dbe635c

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

2 files changed

Lines changed: 27 additions & 22 deletions

File tree

owasp/suppressions.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,8 @@
3333
<cve>CVE-2019-10101</cve>
3434
<cve>CVE-2019-10103</cve>
3535
</suppress>
36+
<suppress>
37+
<notes>H2 is only used for Unit Testing. Version 2.x includes major breaking changes.</notes>
38+
<cve>CVE-2021-23463</cve>
39+
</suppress>
3640
</suppressions>

pom.xml

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,25 @@
2525
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2626
<!-- dependencies -->
2727
<dgclib.version>1.1.7</dgclib.version>
28-
<owasp.version>6.1.6</owasp.version>
29-
<spring.boot.version>2.5.7</spring.boot.version>
30-
<spring.cloud.version>3.0.5</spring.cloud.version>
28+
<owasp.version>6.5.0</owasp.version>
29+
<spring.boot.version>2.6.1</spring.boot.version>
30+
<spring.cloud.openfeign.version>3.1.0</spring.cloud.openfeign.version>
3131
<spring.test.version>5.3.12</spring.test.version>
3232
<spring.security.version>5.6.0</spring.security.version>
33-
<lombok.version>1.18.20</lombok.version>
34-
<liquibase.version>4.4.2</liquibase.version>
33+
<lombok.version>1.18.22</lombok.version>
34+
<liquibase.version>4.6.2</liquibase.version>
3535
<hcert-kotlin.version>1.2.0</hcert-kotlin.version>
3636
<kotlin.version>1.5.10</kotlin.version>
37-
<springdoc.version>1.5.7</springdoc.version>
38-
<junit.version>5.7.1</junit.version>
37+
<springdoc.version>1.6.0</springdoc.version>
38+
<junit.version>5.8.1</junit.version>
3939
<mapstruct.version>1.4.2.Final</mapstruct.version>
40-
<mockito.version>3.9.0</mockito.version>
41-
<bcpkix.version>1.68</bcpkix.version>
42-
<okhttp.version>4.9.1</okhttp.version>
43-
<shedlock.version>4.23.0</shedlock.version>
40+
<mockito.version>4.1.0</mockito.version>
41+
<bcpkix.version>1.70</bcpkix.version>
42+
<okhttp.version>4.9.2</okhttp.version>
43+
<shedlock.version>4.30.0</shedlock.version>
44+
<sap.cloud.sdk.version>3.57.0</sap.cloud.sdk.version>
4445
<slf4j.version>1.7.32</slf4j.version>
45-
<log4j2.version>2.16.0</log4j2.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>
@@ -96,17 +97,17 @@
9697
<dependency>
9798
<groupId>org.apache.logging.log4j</groupId>
9899
<artifactId>log4j-to-slf4j</artifactId>
99-
<version>2.15.0</version>
100+
<version>${log4j2.version}</version>
100101
</dependency>
101102
<dependency>
102103
<groupId>org.apache.logging.log4j</groupId>
103104
<artifactId>log4j-api</artifactId>
104-
<version>2.16.0</version>
105+
<version>${log4j2.version}</version>
105106
</dependency>
106107
<dependency>
107108
<groupId>org.apache.logging.log4j</groupId>
108109
<artifactId>log4j-core</artifactId>
109-
<version>2.16.0</version>
110+
<version>${log4j2.version}</version>
110111
</dependency>
111112
<dependency>
112113
<groupId>org.springframework.boot</groupId>
@@ -118,7 +119,7 @@
118119
<dependency>
119120
<groupId>org.springframework.cloud</groupId>
120121
<artifactId>spring-cloud-openfeign-dependencies</artifactId>
121-
<version>3.0.5</version>
122+
<version>${spring.cloud.openfeign.version}</version>
122123
<type>pom</type>
123124
<scope>import</scope>
124125
</dependency>
@@ -145,7 +146,7 @@
145146
<dependency>
146147
<groupId>com.sap.cloud.sdk</groupId>
147148
<artifactId>sdk-bom</artifactId>
148-
<version>3.43.0</version>
149+
<version>${sap.cloud.sdk.version}</version>
149150
<type>pom</type>
150151
<scope>import</scope>
151152
</dependency>
@@ -193,16 +194,16 @@
193194
<version>${junit.version}</version>
194195
<scope>test</scope>
195196
</dependency>
196-
<dependency>
197-
<groupId>org.springframework.boot</groupId>
198-
<artifactId>spring-boot-starter-test</artifactId>
199-
<scope>test</scope>
200-
</dependency>
201197
<dependency>
202198
<groupId>org.junit.vintage</groupId>
203199
<artifactId>junit-vintage-engine</artifactId>
204200
<version>5.7.0</version>
205201
</dependency>
202+
<dependency>
203+
<groupId>org.springframework.boot</groupId>
204+
<artifactId>spring-boot-starter-test</artifactId>
205+
<scope>test</scope>
206+
</dependency>
206207
<dependency>
207208
<groupId>org.springframework</groupId>
208209
<artifactId>spring-test</artifactId>

0 commit comments

Comments
 (0)