Skip to content

Commit c1df987

Browse files
feat!: bump checkstyle, gradle, java, mockito
1 parent b4bcf5c commit c1df987

19 files changed

Lines changed: 320 additions & 351 deletions

File tree

build.gradle

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id "idea"
3-
id "com.github.mxenabled.coppuccino" version "5.+" apply false
4-
id "com.github.mxenabled.vogue" version "2.+"
3+
id "com.github.mxenabled.coppuccino" version "6.+" apply false
4+
id "com.github.mxenabled.vogue" version "3.+"
55
id "io.freefair.lombok" version "8.+" apply false
66
id "io.github.gradle-nexus.publish-plugin" version "1.1.+"
77
id "com.netflix.nebula.maven-resolved-dependencies" version "21.2.0" apply false
@@ -19,20 +19,29 @@ allprojects {
1919
group "com.mx.path-facilities"
2020
description "MX Path Facilities"
2121
version rootProject.version
22-
sourceCompatibility = JavaVersion.VERSION_17
23-
targetCompatibility = JavaVersion.VERSION_17
22+
23+
java {
24+
toolchain {
25+
languageVersion = JavaLanguageVersion.of(21)
26+
}
27+
}
2428

2529
repositories {
2630
mavenCentral()
2731
mavenLocal()
2832
}
2933

3034
configurations.all {
35+
resolutionStrategy.eachDependency { details ->
36+
if (details.requested.group == "org.apache.commons" && details.requested.name == "commons-lang3") {
37+
details.useVersion "3.18.0"
38+
}
39+
}
3140
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
3241
}
3342

3443
ext {
35-
pathSDKVersion = "[5.0,6.0)"
44+
pathSDKVersion = "[6.0,7.0)"
3645
}
3746
}
3847

@@ -82,12 +91,12 @@ subprojects {
8291
}
8392

8493
task sourcesJar(type: Jar, dependsOn: classes) {
85-
classifier = "sources"
94+
archiveClassifier = "sources"
8695
from sourceSets.main.allSource
8796
}
8897

8998
task packageJavadoc(type: Jar) {
90-
classifier = "javadoc"
99+
archiveClassifier = "javadoc"
91100
from javadoc
92101
}
93102

encryption-service-jasypt/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
compileOnly "org.slf4j:slf4j-api"
1414

1515
//testing dependencies
16-
testImplementation "org.mockito:mockito-inline:[5.0,6.0)"
16+
testImplementation "org.mockito:mockito-core:5.21.0"
1717
testImplementation "org.slf4j:slf4j-simple:1.7.30"
1818
testImplementation "org.spockframework:spock-core:2.4-M6-groovy-3.0"
1919
}

encryption-service-jasypt/gradle.lockfile

Lines changed: 35 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,31 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
1515
com.google.code.findbugs:jsr305:3.0.2=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1616
com.google.code.gson:gson:2.13.1=pmd
1717
com.google.code.gson:gson:2.13.2=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
18-
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
1918
com.google.errorprone:error_prone_annotations:2.38.0=pmd
20-
com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
19+
com.google.errorprone:error_prone_annotations:2.41.0=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
2120
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2221
com.google.guava:failureaccess:1.0.3=checkstyle
2322
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
24-
com.google.guava:guava:33.4.8-jre=checkstyle
23+
com.google.guava:guava:33.5.0-jre=checkstyle
2524
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2625
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
27-
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
28-
com.mx.path-core:common:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
29-
com.mx.path-core:context:5.0.0=testRuntimeClasspath
30-
com.mx.path-core:gateway:5.0.0=testRuntimeClasspath
31-
com.mx.path-core:messaging:5.0.0=testRuntimeClasspath
32-
com.mx.path-core:platform:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33-
com.mx.path-core:testing:5.0.0=testCompileClasspath,testRuntimeClasspath
34-
com.mx.path-core:utilities:5.0.0=testRuntimeClasspath
35-
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
26+
com.google.j2objc:j2objc-annotations:3.1=checkstyle
27+
com.mx.path-core:common:6.0.0-SNAPSHOT=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
28+
com.mx.path-core:context:6.0.0-SNAPSHOT=testRuntimeClasspath
29+
com.mx.path-core:gateway:6.0.0-SNAPSHOT=testRuntimeClasspath
30+
com.mx.path-core:messaging:6.0.0-SNAPSHOT=testRuntimeClasspath
31+
com.mx.path-core:platform:6.0.0-SNAPSHOT=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
32+
com.mx.path-core:testing:6.0.0-SNAPSHOT=testCompileClasspath,testRuntimeClasspath
33+
com.mx.path-core:utilities:6.0.0-SNAPSHOT=testRuntimeClasspath
34+
com.puppycrawl.tools:checkstyle:13.0.0=checkstyle
3635
com.sun.istack:istack-commons-runtime:4.1.2=testRuntimeClasspath
3736
com.sun.xml.bind:jaxb-core:4.0.6=testRuntimeClasspath
3837
com.sun.xml.bind:jaxb-impl:4.0.6=testRuntimeClasspath
3938
commons-beanutils:commons-beanutils:1.11.0=checkstyle
40-
commons-codec:commons-codec:1.15=checkstyle,compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
39+
commons-codec:commons-codec:1.11=checkstyle
40+
commons-codec:commons-codec:1.15=compileClasspath,pmd,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
4141
commons-collections:commons-collections:3.2.2=checkstyle
4242
commons-io:commons-io:2.20.0=spotbugs
43-
commons-lang:commons-lang:2.6=testRuntimeClasspath
4443
commons-logging:commons-logging:1.2=testRuntimeClasspath
4544
info.picocli:picocli:4.7.7=checkstyle
4645
io.github.cdimascio:dotenv-java:2.3.2=testRuntimeClasspath
@@ -52,27 +51,24 @@ jakarta.activation:jakarta.activation-api:2.1.4=testRuntimeClasspath
5251
jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=testRuntimeClasspath
5352
jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=testRuntimeClasspath
5453
jaxen:jaxen:2.0.0=spotbugs
55-
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
56-
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath
57-
net.bytebuddy:byte-buddy:1.17.7=testRuntimeClasspath
58-
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
59-
net.sf.saxon:Saxon-HE:12.9=spotbugs
54+
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
55+
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath
56+
net.bytebuddy:byte-buddy:1.18.3=testRuntimeClasspath
57+
net.sf.saxon:Saxon-HE:12.5=pmd
58+
net.sf.saxon:Saxon-HE:12.9=checkstyle,spotbugs
6059
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
6160
net.sourceforge.pmd:pmd-core:7.16.0=pmd
6261
net.sourceforge.pmd:pmd-java:7.16.0=pmd
6362
org.antlr:antlr4-runtime:4.13.2=checkstyle
6463
org.antlr:antlr4-runtime:4.9.3=pmd
6564
org.apache.bcel:bcel:6.11.0=spotbugs
66-
org.apache.commons:commons-lang3:3.18.0=pmd
67-
org.apache.commons:commons-lang3:3.19.0=spotbugs
68-
org.apache.commons:commons-lang3:3.20.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
69-
org.apache.commons:commons-lang3:3.8.1=checkstyle
65+
org.apache.commons:commons-lang3:3.18.0=checkstyle,compileClasspath,pmd,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
7066
org.apache.commons:commons-text:1.14.0=spotbugs
7167
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7268
org.apache.commons:commons-text:1.3=checkstyle
73-
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
74-
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
75-
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
69+
org.apache.httpcomponents.client5:httpclient5:5.1.3=pmd
70+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd
71+
org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd
7672
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,testRuntimeClasspath
7773
org.apache.httpcomponents:httpcore:4.4.13=testRuntimeClasspath
7874
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
@@ -84,10 +80,10 @@ org.apache.maven.doxia:doxia-module-xdoc:1.12.0=checkstyle
8480
org.apache.maven.doxia:doxia-sink-api:1.12.0=checkstyle
8581
org.apache.xbean:xbean-reflect:3.7=checkstyle
8682
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
87-
org.assertj:assertj-core:3.27.6=testRuntimeClasspath
83+
org.assertj:assertj-core:3.27.7=testRuntimeClasspath
8884
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
89-
org.checkerframework:checker-qual:3.49.3=checkstyle
9085
org.checkerframework:checker-qual:3.49.5=pmd
86+
org.checkerframework:checker-qual:3.52.1=checkstyle
9187
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
9288
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
9389
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
@@ -99,10 +95,10 @@ org.glassfish.jaxb:jaxb-core:4.0.6=testRuntimeClasspath
9995
org.glassfish.jaxb:jaxb-runtime:4.0.6=testRuntimeClasspath
10096
org.glassfish.jaxb:txw2:4.0.6=testRuntimeClasspath
10197
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
102-
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
103-
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
104-
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
105-
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
98+
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
99+
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
100+
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
101+
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
106102
org.jasypt:jasypt:1.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
107103
org.javassist:javassist:3.28.0-GA=checkstyle,testRuntimeClasspath
108104
org.jspecify:jspecify:1.0.0=checkstyle
@@ -113,19 +109,16 @@ org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath
113109
org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath
114110
org.junit:junit-bom:5.12.2=testCompileClasspath
115111
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testRuntimeClasspath
116-
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
117-
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
112+
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
118113
org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath
119114
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
120-
org.ow2.asm:asm-analysis:9.2=jacocoAnt
121115
org.ow2.asm:asm-analysis:9.9=spotbugs
122-
org.ow2.asm:asm-commons:9.2=jacocoAnt
116+
org.ow2.asm:asm-commons:9.8=jacocoAnt
123117
org.ow2.asm:asm-commons:9.9=spotbugs
124-
org.ow2.asm:asm-tree:9.2=jacocoAnt
118+
org.ow2.asm:asm-tree:9.8=jacocoAnt
125119
org.ow2.asm:asm-tree:9.9=spotbugs
126120
org.ow2.asm:asm-util:9.9=spotbugs
127-
org.ow2.asm:asm:9.2=jacocoAnt
128-
org.ow2.asm:asm:9.8=pmd
121+
org.ow2.asm:asm:9.8=jacocoAnt,pmd
129122
org.ow2.asm:asm:9.9=spotbugs
130123
org.pcollections:pcollections:4.0.2=pmd
131124
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
@@ -135,10 +128,10 @@ org.slf4j:slf4j-api:1.7.30=compileClasspath,runtimeClasspath,testCompileClasspat
135128
org.slf4j:slf4j-api:1.7.32=testRuntimeClasspath
136129
org.slf4j:slf4j-api:2.0.17=spotbugs,spotbugsSlf4j
137130
org.slf4j:slf4j-simple:1.7.30=testCompileClasspath,testRuntimeClasspath
138-
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
131+
org.slf4j:slf4j-simple:2.0.17=checkstyle,spotbugsSlf4j
139132
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
140133
org.spockframework:spock-core:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
141-
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
142-
org.xmlresolver:xmlresolver:5.3.3=spotbugs
134+
org.xmlresolver:xmlresolver:5.2.2=pmd
135+
org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs
143136
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
144137
empty=signatures,spotbugsPlugins

encryption-service-vault/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
compileOnly "org.slf4j:slf4j-api"
1313

1414
//testing dependencies
15-
testImplementation "org.mockito:mockito-inline:[5.0,6.0)"
15+
testImplementation "org.mockito:mockito-core:5.21.0"
1616
testImplementation "org.slf4j:slf4j-simple:1.7.30"
1717
testImplementation "org.spockframework:spock-core:2.4-M6-groovy-3.0"
1818
}

0 commit comments

Comments
 (0)