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
+22-29Lines changed: 22 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
plugins {
2
2
id "idea"
3
-
id "com.github.mxenabled.coppuccino" version "6.+" apply false
4
-
id "com.github.mxenabled.vogue" version "3.+"
5
-
id "io.freefair.lombok" version "8.14.3" apply false
3
+
id "com.github.mxenabled.coppuccino" version "5.+" apply false
4
+
id "com.github.mxenabled.vogue" version "2.+"
5
+
id "io.freefair.lombok" version "8.+" apply false
6
6
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
7
7
}
8
8
@@ -29,26 +29,30 @@ allprojects {
29
29
group "com.mx.path-core"
30
30
description "MX Path Core"
31
31
version rootProject.version
32
-
33
-
java {
34
-
toolchain {
35
-
languageVersion =JavaLanguageVersion.of(21)
36
-
}
37
-
}
32
+
sourceCompatibility =JavaVersion.VERSION_17
33
+
targetCompatibility =JavaVersion.VERSION_17
38
34
39
35
repositories {
40
36
mavenCentral()
41
37
mavenLocal()
42
38
}
43
39
44
-
configurations.all {
45
-
//remove after upgrading checkstyle 13.0.0
40
+
configurations.configureEach {
46
41
resolutionStrategy.eachDependency { details->
42
+
//Uncontrolled Recursion [High Severity][https://security.snyk.io/vuln/SNYK-JAVA-ORGAPACHECOMMONS-10734078] in org.apache.commons:commons-lang3@3.17.0
43
+
// introduced by net.sourceforge.pmd:pmd-java@7.16.0 > org.apache.commons:commons-lang3@3.17.0 and 7 other path(s)
44
+
// This issue was fixed in versions: 3.18.0
47
45
if (details.requested.group =="org.apache.commons"&& details.requested.name =="commons-lang3") {
48
46
details.useVersion "3.18.0"
49
47
}
48
+
//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.25.2
49
+
// introduced by com.github.spotbugs:spotbugs@4.9.8 > org.apache.logging.log4j:log4j-core@2.25.2
0 commit comments