Skip to content

Commit 841e01a

Browse files
committed
build: bump snakeyaml and h2
1 parent 2351dae commit 841e01a

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

acceptance-test/pom.xml

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
<dependency>
4141
<groupId>com.h2database</groupId>
4242
<artifactId>h2</artifactId>
43-
<scope>test</scope>
4443
</dependency>
4544
<!-- Cucumber dependencies -->
4645
<dependency>

pom.xml

+20
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<springdoc-openapi-starter.version>2.2.0</springdoc-openapi-starter.version>
1919
<pre-liquibase.version>1.4.0</pre-liquibase.version>
2020
<otj-pg-embedded.version>1.0.2</otj-pg-embedded.version>
21+
<snakeyaml.version>2.0</snakeyaml.version>
22+
<h2.version>2.2.224</h2.version>
2123
<!-- plugins -->
2224
<cukedoctor-maven-plugin.version>3.9.0</cukedoctor-maven-plugin.version>
2325
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
@@ -41,6 +43,24 @@
4143
</modules>
4244
<dependencyManagement>
4345
<dependencies>
46+
<!-- Following exclusions are made since there were security vulnerabilities -->
47+
<dependency>
48+
<groupId>org.springframework.boot</groupId>
49+
<artifactId>spring-boot-starter-web</artifactId>
50+
<version>${spring-boot.version}</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.yaml</groupId>
54+
<artifactId>snakeyaml</artifactId>
55+
<version>${snakeyaml.version}</version>
56+
</dependency>
57+
<dependency>
58+
<groupId>com.h2database</groupId>
59+
<artifactId>h2</artifactId>
60+
<scope>test</scope>
61+
<version>${h2.version}</version>
62+
</dependency>
63+
<!-- Project module dependency -->
4464
<dependency>
4565
<groupId>packagename</groupId>
4666
<artifactId>domain</artifactId>

rest-adapter/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
<groupId>org.springframework.boot</groupId>
2121
<artifactId>spring-boot-starter-web</artifactId>
2222
</dependency>
23+
<dependency>
24+
<groupId>org.yaml</groupId>
25+
<artifactId>snakeyaml</artifactId>
26+
</dependency>
2327
<dependency>
2428
<groupId>org.springdoc</groupId>
2529
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>

0 commit comments

Comments
 (0)