Skip to content

Commit c25be53

Browse files
committed
FINERACT-2181: Update non-major
1 parent 1dfba8e commit c25be53

File tree

9 files changed

+61
-61
lines changed

9 files changed

+61
-61
lines changed

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TODO: this is work in progress, please follow FINERACT-1171
2020
buildscript {
2121
ext {
22-
jacocoVersion = '0.8.12'
22+
jacocoVersion = '0.8.14'
2323
retrofitVersion = '2.9.0'
2424
okhttpVersion = '4.9.3'
2525
fineractCustomProjects = []
@@ -89,7 +89,7 @@ buildscript {
8989
classpath 'org.eclipse.persistence:eclipselink:4.0.6'
9090
classpath 'jakarta.ws.rs:jakarta.ws.rs-api:3.1.0'
9191
classpath 'com.google.cloud.tools:jib-layer-filter-extension-gradle:0.3.0'
92-
classpath 'org.apache.commons:commons-lang3:3.18.0'
92+
classpath 'org.apache.commons:commons-lang3:3.20.0'
9393
classpath 'io.swagger.core.v3:swagger-jaxrs2-jakarta:2.2.22'
9494
classpath 'jakarta.servlet:jakarta.servlet-api:6.1.0'
9595
}
@@ -170,7 +170,7 @@ allprojects {
170170
resolutionStrategy {
171171
dependencySubstitution {
172172
// Substitution is to resolve CVE-2025-12183
173-
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.10.1')
173+
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.10.3')
174174
}
175175
}
176176
}
@@ -540,7 +540,7 @@ configure(project.fineractJavaProjects) {
540540
// Configuration for the Checkstyle plugin
541541
// https://docs.gradle.org/current/userguide/checkstyle_plugin.html
542542
dependencies {
543-
checkstyle 'com.puppycrawl.tools:checkstyle:11.0.0'
543+
checkstyle 'com.puppycrawl.tools:checkstyle:11.1.0'
544544
checkstyle 'com.github.sevntu-checkstyle:sevntu-checks:1.44.1'
545545
}
546546

@@ -562,7 +562,7 @@ configure(project.fineractJavaProjects) {
562562
// Configuration for the errorprone plugin
563563
// https://github.com/tbroyer/gradle-errorprone-plugin
564564
dependencies {
565-
errorprone "com.google.errorprone:error_prone_core:2.35.1"
565+
errorprone "com.google.errorprone:error_prone_core:2.46.0"
566566
}
567567

568568
tasks.withType(JavaCompile).configureEach {
@@ -811,10 +811,10 @@ configure(project.fineractCustomProjects) {
811811
'org.awaitility:awaitility',
812812
'io.github.classgraph:classgraph',
813813
'io.cucumber:cucumber-core',
814-
'io.cucumber:cucumber-java:7.20.1',
815-
'io.cucumber:cucumber-java8:7.20.1',
816-
'io.cucumber:cucumber-junit-platform-engine:7.20.1',
817-
'io.cucumber:cucumber-spring:7.20.1',
814+
'io.cucumber:cucumber-java:7.33.0',
815+
'io.cucumber:cucumber-java8:7.33.0',
816+
'io.cucumber:cucumber-junit-platform-engine:7.33.0',
817+
'io.cucumber:cucumber-spring:7.33.0',
818818
)
819819

820820
testCompileOnly('org.projectlombok:lombok')

fineract-client-feign/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ spotbugsTest {
167167
}
168168

169169
jacoco {
170-
toolVersion = "0.8.11"
170+
toolVersion = "0.8.14"
171171
}
172172

173173
jacocoTestReport {

fineract-client-feign/dependencies.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ dependencies {
2525
'io.github.openfeign:feign-hc5:13.6',
2626
'io.github.openfeign:feign-okhttp:13.6',
2727
'io.github.openfeign.form:feign-form:3.8.0',
28-
'org.apache.httpcomponents.client5:httpclient5:5.2.1',
28+
'org.apache.httpcomponents.client5:httpclient5:5.6',
2929
'com.squareup.okhttp3:okhttp:4.12.0',
3030
'com.fasterxml.jackson.core:jackson-databind',
3131
'com.fasterxml.jackson.datatype:jackson-datatype-jsr310',
3232
'com.fasterxml.jackson.datatype:jackson-datatype-jdk8',
3333
'jakarta.annotation:jakarta.annotation-api:3.0.0',
3434
'io.swagger.core.v3:swagger-annotations-jakarta:2.2.15',
35-
'org.apache.commons:commons-lang3:3.12.0',
35+
'org.apache.commons:commons-lang3:3.20.0',
3636
'org.projectlombok:lombok'
3737
)
3838

3939
// Test dependencies
4040
testImplementation(
41-
'org.junit.jupiter:junit-jupiter-api:5.11.3',
42-
'org.junit.jupiter:junit-jupiter-engine:5.11.3',
43-
'org.mockito:mockito-core:5.14.2',
44-
'org.assertj:assertj-core:3.26.3',
41+
'org.junit.jupiter:junit-jupiter-api:5.14.2',
42+
'org.junit.jupiter:junit-jupiter-engine:5.14.2',
43+
'org.mockito:mockito-core:5.21.0',
44+
'org.assertj:assertj-core:3.27.7',
4545
'org.wiremock:wiremock-standalone'
4646
)
4747
}

fineract-e2e-tests-core/build.gradle

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -67,38 +67,38 @@ dependencies {
6767

6868
testImplementation 'com.github.spotbugs:spotbugs-annotations'
6969

70-
testImplementation 'com.squareup.retrofit2:retrofit:2.11.0'
70+
testImplementation 'com.squareup.retrofit2:retrofit:2.12.0'
7171
testImplementation 'io.github.openfeign:feign-core:13.6'
7272
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
73-
testImplementation 'org.apache.commons:commons-lang3:3.18.0'
73+
testImplementation 'org.apache.commons:commons-lang3:3.20.0'
7474
testImplementation ('com.googlecode.json-simple:json-simple:1.1.1') {
7575
exclude group: 'junit', module: 'junit'
7676
}
77-
testImplementation 'com.google.code.gson:gson:2.11.0'
77+
testImplementation 'com.google.code.gson:gson:2.13.2'
7878

79-
testImplementation 'io.cucumber:cucumber-java:7.20.1'
80-
testImplementation 'io.cucumber:cucumber-junit:7.20.1'
81-
testImplementation 'io.cucumber:cucumber-spring:7.20.1'
82-
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.20.1'
79+
testImplementation 'io.cucumber:cucumber-java:7.33.0'
80+
testImplementation 'io.cucumber:cucumber-junit:7.33.0'
81+
testImplementation 'io.cucumber:cucumber-spring:7.33.0'
82+
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.33.0'
8383

84-
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.1'
84+
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.32.0'
8585

86-
testImplementation 'org.assertj:assertj-core:3.26.3'
87-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
88-
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
86+
testImplementation 'org.assertj:assertj-core:3.27.7'
87+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.14.2'
88+
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.2'
8989

90-
testCompileOnly 'org.projectlombok:lombok:1.18.36'
91-
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
90+
testCompileOnly 'org.projectlombok:lombok:1.18.42'
91+
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'
9292

93-
testImplementation "ch.qos.logback:logback-core:1.5.19"
94-
testImplementation "ch.qos.logback:logback-classic:1.5.19"
93+
testImplementation "ch.qos.logback:logback-core:1.5.26"
94+
testImplementation "ch.qos.logback:logback-classic:1.5.26"
9595

96-
testImplementation 'org.apache.activemq:activemq-client:6.1.6'
97-
testImplementation "org.apache.avro:avro:1.12.0"
98-
testImplementation "org.awaitility:awaitility:4.2.2"
99-
testImplementation 'io.github.classgraph:classgraph:4.8.179'
96+
testImplementation 'org.apache.activemq:activemq-client:6.2.0'
97+
testImplementation "org.apache.avro:avro:1.12.1"
98+
testImplementation "org.awaitility:awaitility:4.3.0"
99+
testImplementation 'io.github.classgraph:classgraph:4.8.184'
100100

101-
testImplementation 'org.apache.commons:commons-collections4:4.4'
101+
testImplementation 'org.apache.commons:commons-collections4:4.5.0'
102102
}
103103

104104
tasks.withType(JavaCompile).configureEach {

fineract-e2e-tests-runner/build.gradle

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -39,37 +39,37 @@ dependencies {
3939
implementation 'org.springframework:spring-test'
4040
testImplementation 'org.springframework:spring-jms'
4141

42-
testImplementation 'com.squareup.retrofit2:retrofit:2.11.0'
42+
testImplementation 'com.squareup.retrofit2:retrofit:2.12.0'
4343
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
44-
testImplementation 'org.apache.commons:commons-lang3:3.18.0'
44+
testImplementation 'org.apache.commons:commons-lang3:3.20.0'
4545
testImplementation ('com.googlecode.json-simple:json-simple:1.1.1') {
4646
exclude group: 'junit', module: 'junit'
4747
}
48-
testImplementation 'com.google.code.gson:gson:2.11.0'
48+
testImplementation 'com.google.code.gson:gson:2.13.2'
4949

50-
testImplementation 'org.junit.platform:junit-platform-suite:1.11.4'
51-
testImplementation 'org.junit.platform:junit-platform-console:1.11.4'
52-
testImplementation 'io.cucumber:cucumber-java:7.20.1'
53-
testImplementation 'io.cucumber:cucumber-junit:7.20.1'
54-
testImplementation 'io.cucumber:cucumber-spring:7.20.1'
55-
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.20.1'
50+
testImplementation 'org.junit.platform:junit-platform-suite:1.14.2'
51+
testImplementation 'org.junit.platform:junit-platform-console:1.14.2'
52+
testImplementation 'io.cucumber:cucumber-java:7.33.0'
53+
testImplementation 'io.cucumber:cucumber-junit:7.33.0'
54+
testImplementation 'io.cucumber:cucumber-spring:7.33.0'
55+
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.33.0'
5656

57-
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.1'
57+
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.32.0'
5858

59-
testImplementation 'org.assertj:assertj-core:3.26.3'
59+
testImplementation 'org.assertj:assertj-core:3.27.7'
6060

61-
testCompileOnly 'org.projectlombok:lombok:1.18.36'
62-
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
61+
testCompileOnly 'org.projectlombok:lombok:1.18.42'
62+
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'
6363

64-
testImplementation "ch.qos.logback:logback-core:1.5.19"
65-
testImplementation "ch.qos.logback:logback-classic:1.5.19"
64+
testImplementation "ch.qos.logback:logback-core:1.5.26"
65+
testImplementation "ch.qos.logback:logback-classic:1.5.26"
6666

67-
testImplementation 'org.apache.activemq:activemq-client:6.1.6'
68-
testImplementation "org.apache.avro:avro:1.12.0"
69-
testImplementation "org.awaitility:awaitility:4.2.2"
70-
testImplementation 'io.github.classgraph:classgraph:4.8.179'
67+
testImplementation 'org.apache.activemq:activemq-client:6.2.0'
68+
testImplementation "org.apache.avro:avro:1.12.1"
69+
testImplementation "org.awaitility:awaitility:4.3.0"
70+
testImplementation 'io.github.classgraph:classgraph:4.8.184'
7171

72-
testImplementation 'org.apache.commons:commons-collections4:4.4'
72+
testImplementation 'org.apache.commons:commons-collections4:4.5.0'
7373
}
7474

7575
tasks.named('test') {

integration-tests/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
// testCompile dependencies are ONLY used in src/test, not src/main.
2121
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
2222
//
23-
tomcat 'org.apache.tomcat:tomcat:10.1.45@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.52@zip'
2424
def providerMainOutput = project(':fineract-provider').extensions.getByType(SourceSetContainer).named('main').get().output
2525
testImplementation( providerMainOutput,
2626
project(path: ':fineract-core', configuration: 'runtimeElements'),

oauth2-tests/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ configurations {
3535
}
3636
dependencies {
3737
driver 'com.mysql:mysql-connector-j'
38-
testImplementation 'org.seleniumhq.selenium:selenium-java:4.21.0'
38+
testImplementation 'org.seleniumhq.selenium:selenium-java:4.40.0'
3939
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.3'
40-
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
40+
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.2'
4141
}
4242

4343
cargo {

oauth2-tests/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
// testCompile dependencies are ONLY used in src/test, not src/main.
2121
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
2222
//
23-
tomcat 'org.apache.tomcat:tomcat:10.1.45@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.52@zip'
2424
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
2525
project(path: ':fineract-provider', configuration: 'runtimeElements'),
2626
'org.junit.jupiter:junit-jupiter-api',

twofactor-tests/dependencies.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
// testCompile dependencies are ONLY used in src/test, not src/main.
2121
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
2222
//
23-
tomcat 'org.apache.tomcat:tomcat:10.1.45@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.52@zip'
2424
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
2525
project(path: ':fineract-provider', configuration: 'runtimeElements'),
2626
'org.junit.jupiter:junit-jupiter-api',

0 commit comments

Comments
 (0)