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
id "com.github.mxenabled.coppuccino" version "6.+" apply false
3
+
id "com.github.mxenabled.vogue" version "3.+"
2
4
id "idea"
3
-
id "com.github.mxenabled.coppuccino" version "5.+" apply false
4
-
id "com.github.mxenabled.vogue" version "2.+"
5
5
id "io.freefair.lombok" version "8.+" apply false
6
6
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
7
7
}
@@ -29,92 +29,81 @@ allprojects {
29
29
group "com.mx.path-core"
30
30
description "MX Path Core"
31
31
version rootProject.version
32
-
sourceCompatibility =JavaVersion.VERSION_17
33
-
targetCompatibility =JavaVersion.VERSION_17
32
+
33
+
java {
34
+
toolchain {
35
+
languageVersion =JavaLanguageVersion.of(17)
36
+
}
37
+
}
34
38
35
39
repositories {
36
40
mavenCentral()
37
41
mavenLocal()
38
42
}
39
-
40
-
configurations.configureEach {
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
45
-
if (details.requested.group =="org.apache.commons"&& details.requested.name =="commons-lang3") {
46
-
details.useVersion "3.18.0"
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
Copy file name to clipboardExpand all lines: common/build.gradle
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,12 @@ coppuccino {
5
5
}
6
6
7
7
dependencies {
8
-
api "org.apache.commons:commons-text:latest.release"// For string manipulation utilities. There is a very small overlap with Guava's strings class, but adds many more features.
8
+
api "org.apache.commons:commons-text:1.15.0"// For string manipulation utilities
9
9
api "com.google.guava:guava"
10
10
api "com.github.rholder:guava-retrying"// For Request retries
11
-
api "com.github.spotbugs:spotbugs-annotations:4.9.8"// For annotating classes and methods to suppress SpotBugs violations
0 commit comments