File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 40
40
<dependency >
41
41
<groupId >com.h2database</groupId >
42
42
<artifactId >h2</artifactId >
43
- <scope >test</scope >
44
43
</dependency >
45
44
<!-- Cucumber dependencies -->
46
45
<dependency >
Original file line number Diff line number Diff line change 18
18
<springdoc-openapi-starter .version>2.2.0</springdoc-openapi-starter .version>
19
19
<pre-liquibase .version>1.4.0</pre-liquibase .version>
20
20
<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>
21
23
<!-- plugins -->
22
24
<cukedoctor-maven-plugin .version>3.9.0</cukedoctor-maven-plugin .version>
23
25
<maven-surefire-plugin .version>3.2.2</maven-surefire-plugin .version>
41
43
</modules >
42
44
<dependencyManagement >
43
45
<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 -->
44
64
<dependency >
45
65
<groupId >packagename</groupId >
46
66
<artifactId >domain</artifactId >
Original file line number Diff line number Diff line change 20
20
<groupId >org.springframework.boot</groupId >
21
21
<artifactId >spring-boot-starter-web</artifactId >
22
22
</dependency >
23
+ <dependency >
24
+ <groupId >org.yaml</groupId >
25
+ <artifactId >snakeyaml</artifactId >
26
+ </dependency >
23
27
<dependency >
24
28
<groupId >org.springdoc</groupId >
25
29
<artifactId >springdoc-openapi-starter-webmvc-ui</artifactId >
You can’t perform that action at this time.
0 commit comments