@@ -5,7 +5,7 @@ plugins {
5
5
id ' jacoco'
6
6
id ' info.solidsoft.pitest' version ' 1.7.0'
7
7
id ' checkstyle'
8
- id " org.owasp.dependencycheck" version " 6.3.1 "
8
+ id " org.owasp.dependencycheck" version " 6.3.2 "
9
9
}
10
10
11
11
String buildId = project. hasProperty(' buildId' ) ? project[' buildId' ] : ' DEV'
@@ -26,9 +26,9 @@ repositories {
26
26
27
27
ext {
28
28
mapstructVersion = " 1.4.2.Final"
29
- lombokVersion = " 1.18.20 "
29
+ lombokVersion = " 1.18.22 "
30
30
wireMockVersion = " 2.27.2"
31
- ioCucumberVersion = " 6.11 .0"
31
+ ioCucumberVersion = " 7.0 .0"
32
32
swaggerVersion = " 3.0.0"
33
33
jacocoVersion = " 0.8.5"
34
34
pitest = " 0.15"
@@ -58,15 +58,15 @@ dependencies {
58
58
implementation " org.pitest:pitest-junit5-plugin:${ pitest} "
59
59
60
60
// Fixing vulnerabilities
61
- implementation " com.google.guava:guava:30.1 .1-jre"
61
+ implementation " com.google.guava:guava:31.0 .1-jre"
62
62
/*
63
63
*https://docs.gradle.org/current/userguide/dependency_management.html#sec:module_substitution
64
64
* Example 109. Example: Blacklisting a version with a replacement
65
65
*/
66
66
configurations. all {
67
67
resolutionStrategy. eachDependency { DependencyResolveDetails details ->
68
68
if (details. requested. group == ' com.google.guava' && details. requested. name == ' guava' && details. requested. version == ' 21.0' ) {
69
- details. useVersion ' 30.0 -jre'
69
+ details. useVersion ' 31.0.1 -jre'
70
70
details. because ' Fixes vulnerability in prior guava versions'
71
71
}
72
72
}
0 commit comments