You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build.gradle
+37-2Lines changed: 37 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -27,12 +27,47 @@ allprojects {
27
27
mavenLocal()
28
28
}
29
29
30
-
configurations.all {
30
+
configurations.configureEach {
31
+
resolutionStrategy.eachDependency { details->
32
+
//Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078] in org.apache.commons:commons-lang3@3.17.0
33
+
// introduced by net.sourceforge.pmd:pmd-java@7.16.0 > org.apache.commons:commons-lang3@3.17.0 and 7 other path(s)
34
+
// This issue was fixed in versions: 3.18.0
35
+
if (details.requested.group =="org.apache.commons"&& details.requested.name =="commons-lang3") {
36
+
details.useVersion "3.18.0"
37
+
}
38
+
//Improper Validation of Certificate with Host Mismatch [Medium Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHELOGGINGLOG4J-14532782] in org.apache.logging.log4j:log4j-core@2.24.3
39
+
// introduced by com.github.spotbugs:spotbugs@4.9.8 > org.apache.logging.log4j:log4j-core@2.24.3
//Stack-based Buffer Overflow [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-10500754] in com.fasterxml.jackson.core:jackson-core@2.14.2
51
+
// introduced by io.honeybadger:honeybadger-java@2.1.2 > com.fasterxml.jackson.core:jackson-core@2.14.2 and 1 other path(s)
52
+
// This issue was fixed in versions: 2.15.0-rc1
53
+
//Denial of Service (DoS) [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-7569538] in com.fasterxml.jackson.core:jackson-core@2.14.2
54
+
// introduced by io.honeybadger:honeybadger-java@2.1.2 > com.fasterxml.jackson.core:jackson-core@2.14.2 and 1 other path(s)
0 commit comments