Skip to content

Commit f764b5d

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

19 files changed

Lines changed: 276 additions & 307 deletions

File tree

build.gradle

Lines changed: 7 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.0.0-SNAPSHOT" apply false
4+
id "com.github.mxenabled.vogue" version "3.0.0-SNAPSHOT"
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,8 +19,8 @@ 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+
sourceCompatibility = JavaVersion.VERSION_21
23+
targetCompatibility = JavaVersion.VERSION_21
2424

2525
repositories {
2626
mavenCentral()
@@ -32,7 +32,7 @@ allprojects {
3232
}
3333

3434
ext {
35-
pathSDKVersion = "[5.0,6.0)"
35+
pathSDKVersion = "6.0.0-SNAPSHOT"
3636
}
3737
}
3838

@@ -82,12 +82,12 @@ subprojects {
8282
}
8383

8484
task sourcesJar(type: Jar, dependsOn: classes) {
85-
classifier = "sources"
85+
archiveClassifier = "sources"
8686
from sourceSets.main.allSource
8787
}
8888

8989
task packageJavadoc(type: Jar) {
90-
classifier = "javadoc"
90+
archiveClassifier = "javadoc"
9191
from javadoc
9292
}
9393

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: 31 additions & 36 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:12.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,11 +51,10 @@ 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,testRuntimeClasspath
56+
net.sf.saxon:Saxon-HE:12.5=pmd
57+
net.sf.saxon:Saxon-HE:12.9=checkstyle,spotbugs
6058
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
6159
net.sourceforge.pmd:pmd-core:7.16.0=pmd
6260
net.sourceforge.pmd:pmd-java:7.16.0=pmd
@@ -70,9 +68,9 @@ org.apache.commons:commons-lang3:3.8.1=checkstyle
7068
org.apache.commons:commons-text:1.14.0=spotbugs
7169
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7270
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
71+
org.apache.httpcomponents.client5:httpclient5:5.1.3=pmd
72+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd
73+
org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd
7674
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,testRuntimeClasspath
7775
org.apache.httpcomponents:httpcore:4.4.13=testRuntimeClasspath
7876
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
@@ -86,8 +84,8 @@ org.apache.xbean:xbean-reflect:3.7=checkstyle
8684
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
8785
org.assertj:assertj-core:3.27.6=testRuntimeClasspath
8886
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
89-
org.checkerframework:checker-qual:3.49.3=checkstyle
9087
org.checkerframework:checker-qual:3.49.5=pmd
88+
org.checkerframework:checker-qual:3.51.1=checkstyle
9189
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
9290
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
9391
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
@@ -99,10 +97,10 @@ org.glassfish.jaxb:jaxb-core:4.0.6=testRuntimeClasspath
9997
org.glassfish.jaxb:jaxb-runtime:4.0.6=testRuntimeClasspath
10098
org.glassfish.jaxb:txw2:4.0.6=testRuntimeClasspath
10199
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
100+
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
101+
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
102+
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
103+
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
106104
org.jasypt:jasypt:1.9.3=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
107105
org.javassist:javassist:3.28.0-GA=checkstyle,testRuntimeClasspath
108106
org.jspecify:jspecify:1.0.0=checkstyle
@@ -113,19 +111,16 @@ org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath
113111
org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath
114112
org.junit:junit-bom:5.12.2=testCompileClasspath
115113
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
114+
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
118115
org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath
119116
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
120-
org.ow2.asm:asm-analysis:9.2=jacocoAnt
121117
org.ow2.asm:asm-analysis:9.9=spotbugs
122-
org.ow2.asm:asm-commons:9.2=jacocoAnt
118+
org.ow2.asm:asm-commons:9.8=jacocoAnt
123119
org.ow2.asm:asm-commons:9.9=spotbugs
124-
org.ow2.asm:asm-tree:9.2=jacocoAnt
120+
org.ow2.asm:asm-tree:9.8=jacocoAnt
125121
org.ow2.asm:asm-tree:9.9=spotbugs
126122
org.ow2.asm:asm-util:9.9=spotbugs
127-
org.ow2.asm:asm:9.2=jacocoAnt
128-
org.ow2.asm:asm:9.8=pmd
123+
org.ow2.asm:asm:9.8=jacocoAnt,pmd
129124
org.ow2.asm:asm:9.9=spotbugs
130125
org.pcollections:pcollections:4.0.2=pmd
131126
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
@@ -138,7 +133,7 @@ org.slf4j:slf4j-simple:1.7.30=testCompileClasspath,testRuntimeClasspath
138133
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
139134
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
140135
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
136+
org.xmlresolver:xmlresolver:5.2.2=pmd
137+
org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs
143138
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
144139
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
}

encryption-service-vault/gradle.lockfile

Lines changed: 31 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -16,33 +16,31 @@ com.github.stephenc.jcip:jcip-annotations:1.0-1=spotbugs
1616
com.google.code.findbugs:jsr305:3.0.2=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
1717
com.google.code.gson:gson:2.13.1=pmd
1818
com.google.code.gson:gson:2.13.2=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
19-
com.google.errorprone:error_prone_annotations:2.36.0=checkstyle
2019
com.google.errorprone:error_prone_annotations:2.38.0=pmd
21-
com.google.errorprone:error_prone_annotations:2.41.0=compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
20+
com.google.errorprone:error_prone_annotations:2.41.0=checkstyle,compileClasspath,runtimeClasspath,spotbugs,testCompileClasspath,testRuntimeClasspath
2221
com.google.guava:failureaccess:1.0.1=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2322
com.google.guava:failureaccess:1.0.3=checkstyle
2423
com.google.guava:guava:32.1.3-jre=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
25-
com.google.guava:guava:33.4.8-jre=checkstyle
24+
com.google.guava:guava:33.5.0-jre=checkstyle
2625
com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=checkstyle,compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
2726
com.google.j2objc:j2objc-annotations:2.8=compileClasspath,testCompileClasspath
28-
com.google.j2objc:j2objc-annotations:3.0.0=checkstyle
29-
com.mx.path-core:common:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
30-
com.mx.path-core:context:5.0.0=testRuntimeClasspath
31-
com.mx.path-core:gateway:5.0.0=testRuntimeClasspath
32-
com.mx.path-core:messaging:5.0.0=testRuntimeClasspath
33-
com.mx.path-core:platform:5.0.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
34-
com.mx.path-core:testing:5.0.0=testCompileClasspath,testRuntimeClasspath
35-
com.mx.path-core:utilities:5.0.0=testRuntimeClasspath
36-
com.puppycrawl.tools:checkstyle:10.25.0=checkstyle
27+
com.google.j2objc:j2objc-annotations:3.1=checkstyle
28+
com.mx.path-core:common:6.0.0-SNAPSHOT=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
29+
com.mx.path-core:context:6.0.0-SNAPSHOT=testRuntimeClasspath
30+
com.mx.path-core:gateway:6.0.0-SNAPSHOT=testRuntimeClasspath
31+
com.mx.path-core:messaging:6.0.0-SNAPSHOT=testRuntimeClasspath
32+
com.mx.path-core:platform:6.0.0-SNAPSHOT=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
33+
com.mx.path-core:testing:6.0.0-SNAPSHOT=testCompileClasspath,testRuntimeClasspath
34+
com.mx.path-core:utilities:6.0.0-SNAPSHOT=testRuntimeClasspath
35+
com.puppycrawl.tools:checkstyle:12.0.0=checkstyle
3736
com.sun.istack:istack-commons-runtime:4.1.2=testRuntimeClasspath
3837
com.sun.xml.bind:jaxb-core:4.0.6=testRuntimeClasspath
3938
com.sun.xml.bind:jaxb-impl:4.0.6=testRuntimeClasspath
4039
commons-beanutils:commons-beanutils:1.11.0=checkstyle
41-
commons-codec:commons-codec:1.11=testRuntimeClasspath
42-
commons-codec:commons-codec:1.15=checkstyle,pmd
40+
commons-codec:commons-codec:1.11=checkstyle,testRuntimeClasspath
41+
commons-codec:commons-codec:1.15=pmd
4342
commons-collections:commons-collections:3.2.2=checkstyle
4443
commons-io:commons-io:2.20.0=spotbugs
45-
commons-lang:commons-lang:2.6=testRuntimeClasspath
4644
commons-logging:commons-logging:1.2=testRuntimeClasspath
4745
info.picocli:picocli:4.7.7=checkstyle
4846
io.github.cdimascio:dotenv-java:2.3.2=testRuntimeClasspath
@@ -54,11 +52,10 @@ jakarta.activation:jakarta.activation-api:2.1.4=testRuntimeClasspath
5452
jakarta.xml.bind:jakarta.xml.bind-api:4.0.4=testRuntimeClasspath
5553
jakarta.xml.soap:jakarta.xml.soap-api:3.0.2=testRuntimeClasspath
5654
jaxen:jaxen:2.0.0=spotbugs
57-
net.bytebuddy:byte-buddy-agent:1.14.1=testCompileClasspath,testRuntimeClasspath
58-
net.bytebuddy:byte-buddy:1.14.1=testCompileClasspath
59-
net.bytebuddy:byte-buddy:1.17.7=testRuntimeClasspath
60-
net.sf.saxon:Saxon-HE:12.5=checkstyle,pmd
61-
net.sf.saxon:Saxon-HE:12.9=spotbugs
55+
net.bytebuddy:byte-buddy-agent:1.17.7=testCompileClasspath,testRuntimeClasspath
56+
net.bytebuddy:byte-buddy:1.17.7=testCompileClasspath,testRuntimeClasspath
57+
net.sf.saxon:Saxon-HE:12.5=pmd
58+
net.sf.saxon:Saxon-HE:12.9=checkstyle,spotbugs
6259
net.sourceforge.pmd:pmd-ant:7.16.0=pmd
6360
net.sourceforge.pmd:pmd-core:7.16.0=pmd
6461
net.sourceforge.pmd:pmd-java:7.16.0=pmd
@@ -72,9 +69,9 @@ org.apache.commons:commons-lang3:3.8.1=checkstyle
7269
org.apache.commons:commons-text:1.14.0=spotbugs
7370
org.apache.commons:commons-text:1.15.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
7471
org.apache.commons:commons-text:1.3=checkstyle
75-
org.apache.httpcomponents.client5:httpclient5:5.1.3=checkstyle,pmd
76-
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=checkstyle,pmd
77-
org.apache.httpcomponents.core5:httpcore5:5.1.3=checkstyle,pmd
72+
org.apache.httpcomponents.client5:httpclient5:5.1.3=pmd
73+
org.apache.httpcomponents.core5:httpcore5-h2:5.1.3=pmd
74+
org.apache.httpcomponents.core5:httpcore5:5.1.3=pmd
7875
org.apache.httpcomponents:httpclient:4.5.13=checkstyle,testRuntimeClasspath
7976
org.apache.httpcomponents:httpcore:4.4.13=testRuntimeClasspath
8077
org.apache.httpcomponents:httpcore:4.4.14=checkstyle
@@ -88,8 +85,8 @@ org.apache.xbean:xbean-reflect:3.7=checkstyle
8885
org.apiguardian:apiguardian-api:1.1.2=testCompileClasspath
8986
org.assertj:assertj-core:3.27.6=testRuntimeClasspath
9087
org.checkerframework:checker-qual:3.37.0=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
91-
org.checkerframework:checker-qual:3.49.3=checkstyle
9288
org.checkerframework:checker-qual:3.49.5=pmd
89+
org.checkerframework:checker-qual:3.51.1=checkstyle
9390
org.codehaus.groovy:groovy:3.0.24=testCompileClasspath,testRuntimeClasspath
9491
org.codehaus.plexus:plexus-classworlds:2.6.0=checkstyle
9592
org.codehaus.plexus:plexus-component-annotations:2.1.0=checkstyle
@@ -101,10 +98,10 @@ org.glassfish.jaxb:jaxb-core:4.0.6=testRuntimeClasspath
10198
org.glassfish.jaxb:jaxb-runtime:4.0.6=testRuntimeClasspath
10299
org.glassfish.jaxb:txw2:4.0.6=testRuntimeClasspath
103100
org.hamcrest:hamcrest:3.0=testCompileClasspath,testRuntimeClasspath
104-
org.jacoco:org.jacoco.agent:0.8.8=jacocoAgent,jacocoAnt
105-
org.jacoco:org.jacoco.ant:0.8.8=jacocoAnt
106-
org.jacoco:org.jacoco.core:0.8.8=jacocoAnt
107-
org.jacoco:org.jacoco.report:0.8.8=jacocoAnt
101+
org.jacoco:org.jacoco.agent:0.8.13=jacocoAgent,jacocoAnt
102+
org.jacoco:org.jacoco.ant:0.8.13=jacocoAnt
103+
org.jacoco:org.jacoco.core:0.8.13=jacocoAnt
104+
org.jacoco:org.jacoco.report:0.8.13=jacocoAnt
108105
org.javassist:javassist:3.28.0-GA=checkstyle,testRuntimeClasspath
109106
org.jspecify:jspecify:1.0.0=checkstyle
110107
org.junit.jupiter:junit-jupiter-api:5.14.0=testRuntimeClasspath
@@ -114,19 +111,16 @@ org.junit.platform:junit-platform-engine:1.12.2=testCompileClasspath
114111
org.junit.platform:junit-platform-engine:1.14.0=testRuntimeClasspath
115112
org.junit:junit-bom:5.12.2=testCompileClasspath
116113
org.junit:junit-bom:5.14.0=runtimeClasspath,spotbugs,testRuntimeClasspath
117-
org.mockito:mockito-core:5.2.0=testCompileClasspath,testRuntimeClasspath
118-
org.mockito:mockito-inline:5.2.0=testCompileClasspath,testRuntimeClasspath
114+
org.mockito:mockito-core:5.21.0=testCompileClasspath,testRuntimeClasspath
119115
org.objenesis:objenesis:3.3=runtimeClasspath,testRuntimeClasspath
120116
org.opentest4j:opentest4j:1.3.0=testCompileClasspath,testRuntimeClasspath
121-
org.ow2.asm:asm-analysis:9.2=jacocoAnt
122117
org.ow2.asm:asm-analysis:9.9=spotbugs
123-
org.ow2.asm:asm-commons:9.2=jacocoAnt
118+
org.ow2.asm:asm-commons:9.8=jacocoAnt
124119
org.ow2.asm:asm-commons:9.9=spotbugs
125-
org.ow2.asm:asm-tree:9.2=jacocoAnt
120+
org.ow2.asm:asm-tree:9.8=jacocoAnt
126121
org.ow2.asm:asm-tree:9.9=spotbugs
127122
org.ow2.asm:asm-util:9.9=spotbugs
128-
org.ow2.asm:asm:9.2=jacocoAnt
129-
org.ow2.asm:asm:9.8=pmd
123+
org.ow2.asm:asm:9.8=jacocoAnt,pmd
130124
org.ow2.asm:asm:9.9=spotbugs
131125
org.pcollections:pcollections:4.0.2=pmd
132126
org.projectlombok:lombok:1.18.42=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
@@ -139,7 +133,7 @@ org.slf4j:slf4j-simple:1.7.30=testCompileClasspath,testRuntimeClasspath
139133
org.slf4j:slf4j-simple:2.0.17=spotbugsSlf4j
140134
org.spockframework:spock-bom:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
141135
org.spockframework:spock-core:2.4-M6-groovy-3.0=testCompileClasspath,testRuntimeClasspath
142-
org.xmlresolver:xmlresolver:5.2.2=checkstyle,pmd
143-
org.xmlresolver:xmlresolver:5.3.3=spotbugs
136+
org.xmlresolver:xmlresolver:5.2.2=pmd
137+
org.xmlresolver:xmlresolver:5.3.3=checkstyle,spotbugs
144138
org.yaml:snakeyaml:2.4=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
145139
empty=signatures,spotbugsPlugins

exception-reporter-honeybadger/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ dependencies {
33
implementation "net.logstash.logback:logstash-logback-encoder:[6.0,7.0)"
44

55
//testing dependencies
6-
testImplementation "org.mockito:mockito-inline:[5.0,6.0)"
6+
testImplementation "org.mockito:mockito-core:5.21.0"
77
testImplementation "org.spockframework:spock-core:2.4-M6-groovy-3.0"
88
}

0 commit comments

Comments
 (0)