Skip to content

Commit 02a1d30

Browse files
committed
FINERACT-2684: Update non-major
1 parent 9493c8b commit 02a1d30

11 files changed

Lines changed: 26 additions & 26 deletions

File tree

build.gradle

Lines changed: 5 additions & 5 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.14'
22+
jacocoVersion = '0.8.15'
2323
fineractCustomProjects = []
2424
fineractJavaProjects = subprojects.findAll{
2525
[
@@ -99,7 +99,7 @@ buildscript {
9999
classpath 'jakarta.ws.rs:jakarta.ws.rs-api:3.1.0'
100100
classpath 'com.google.cloud.tools:jib-layer-filter-extension-gradle:0.3.0'
101101
classpath 'org.apache.commons:commons-lang3:3.20.0'
102-
classpath 'io.swagger.core.v3:swagger-jaxrs2-jakarta:2.2.49'
102+
classpath 'io.swagger.core.v3:swagger-jaxrs2-jakarta:2.2.54'
103103
classpath 'jakarta.servlet:jakarta.servlet-api:6.1.0'
104104
}
105105
}
@@ -181,7 +181,7 @@ allprojects {
181181
resolutionStrategy {
182182
dependencySubstitution {
183183
// Substitution is to resolve CVE-2025-12183
184-
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.11.0')
184+
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.11.2')
185185
}
186186
}
187187
}
@@ -554,7 +554,7 @@ configure(project.fineractJavaProjects) {
554554
// Configuration for the Checkstyle plugin
555555
// https://docs.gradle.org/current/userguide/checkstyle_plugin.html
556556
dependencies {
557-
checkstyle 'com.puppycrawl.tools:checkstyle:13.4.2'
557+
checkstyle 'com.puppycrawl.tools:checkstyle:13.11.0'
558558
checkstyle 'com.github.sevntu-checkstyle:sevntu-checks:1.44.1'
559559
}
560560

@@ -584,7 +584,7 @@ configure(project.fineractJavaProjects) {
584584
// Configuration for the errorprone plugin
585585
// https://github.com/tbroyer/gradle-errorprone-plugin
586586
dependencies {
587-
errorprone "com.google.errorprone:error_prone_core:2.49.0"
587+
errorprone "com.google.errorprone:error_prone_core:2.50.0"
588588
}
589589

590590
tasks.withType(JavaCompile).configureEach {

fineract-client-feign/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ spotbugsTest {
173173
}
174174

175175
jacoco {
176-
toolVersion = "0.8.14"
176+
toolVersion = "0.8.15"
177177
}
178178

179179
jacocoTestReport {

fineract-client-feign/dependencies.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@
1919
dependencies {
2020
// Feign dependencies
2121
implementation(
22-
'io.github.openfeign:feign-core:13.12',
23-
'io.github.openfeign:feign-jackson:13.12',
24-
'io.github.openfeign:feign-slf4j:13.12',
25-
'io.github.openfeign:feign-hc5:13.12',
26-
'io.github.openfeign:feign-okhttp:13.12',
22+
'io.github.openfeign:feign-core:13.14',
23+
'io.github.openfeign:feign-jackson:13.14',
24+
'io.github.openfeign:feign-slf4j:13.14',
25+
'io.github.openfeign:feign-hc5:13.14',
26+
'io.github.openfeign:feign-okhttp:13.14',
2727
'io.github.openfeign.form:feign-form:3.8.0',
28-
'org.apache.httpcomponents.client5:httpclient5:5.6.1',
28+
'org.apache.httpcomponents.client5:httpclient5:5.6.4',
2929
'com.squareup.okhttp3:okhttp',
3030
'com.fasterxml.jackson.core:jackson-databind',
3131
'com.fasterxml.jackson.datatype:jackson-datatype-jsr310',
3232
'com.fasterxml.jackson.datatype:jackson-datatype-jdk8',
33-
'org.openapitools:jackson-databind-nullable:0.2.6',
33+
'org.openapitools:jackson-databind-nullable:0.2.11',
3434
'jakarta.annotation:jakarta.annotation-api',
3535
'io.swagger.core.v3:swagger-annotations-jakarta',
3636
'org.apache.commons:commons-lang3',

fineract-doc/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ buildscript {
2626
dependencies {
2727
classpath 'org.asciidoctor:asciidoctor-gradle-jvm:4.0.5'
2828
classpath 'org.asciidoctor:asciidoctor-gradle-jvm-pdf:4.0.5'
29-
classpath 'org.yaml:snakeyaml:2.6'
29+
classpath 'org.yaml:snakeyaml:2.7'
3030
}
3131
}
3232

@@ -42,8 +42,8 @@ apply plugin: 'org.asciidoctor.jvm.pdf'
4242
configurations.all {
4343
resolutionStrategy {
4444
// Force specific versions of dependencies to avoid conflicts
45-
force 'org.yaml:snakeyaml:2.6',
46-
'org.jruby:jruby-complete:10.1.0.0'
45+
force 'org.yaml:snakeyaml:2.7',
46+
'org.jruby:jruby-complete:10.1.1.0'
4747
}
4848
}
4949

fineract-e2e-tests-core/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ dependencies {
6767
testImplementation 'com.github.spotbugs:spotbugs-annotations'
6868

6969
testImplementation 'com.squareup.retrofit2:retrofit'
70-
testImplementation 'io.github.openfeign:feign-core:13.12'
71-
testImplementation 'io.github.openfeign:feign-jackson:13.12'
70+
testImplementation 'io.github.openfeign:feign-core:13.14'
71+
testImplementation 'io.github.openfeign:feign-jackson:13.14'
7272
testImplementation 'org.apache.httpcomponents:httpclient'
7373
testImplementation 'org.apache.commons:commons-lang3'
7474
testImplementation 'com.google.guava:guava'
@@ -82,7 +82,7 @@ dependencies {
8282
testImplementation 'io.cucumber:cucumber-spring'
8383
testImplementation 'io.cucumber:cucumber-junit-platform-engine'
8484

85-
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.34.0'
85+
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.35.4'
8686

8787
testImplementation 'org.assertj:assertj-core'
8888
testImplementation 'org.junit.jupiter:junit-jupiter-api'

fineract-e2e-tests-runner/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dependencies {
5454
testImplementation 'io.cucumber:cucumber-spring'
5555
testImplementation 'io.cucumber:cucumber-junit-platform-engine'
5656

57-
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.34.0'
57+
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.35.4'
5858

5959
testImplementation 'org.assertj:assertj-core'
6060

fineract-provider/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ dependencies {
125125
testImplementation 'org.springframework.boot:spring-boot-starter-test'
126126
// Spins up a real PostgreSQL for self-contained persistence tests (e.g. JpaJdbcSameTransactionVisibilityTest) that
127127
// need a real EclipseLink EntityManagerFactory against a real database. Skipped automatically when Docker is absent.
128-
testImplementation 'org.testcontainers:postgresql:1.20.4'
129-
testImplementation 'org.testcontainers:junit-jupiter:1.20.4'
128+
testImplementation 'org.testcontainers:postgresql:1.21.4'
129+
testImplementation 'org.testcontainers:junit-jupiter:1.21.4'
130130
testImplementation 'org.mockito:mockito-core'
131131
testImplementation 'org.mockito:mockito-junit-jupiter'
132132
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.14.4'

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.55@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.59@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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ configurations {
3636
dependencies {
3737
driver 'com.mysql:mysql-connector-j'
3838
driver 'org.mariadb.jdbc:mariadb-java-client'
39-
testImplementation 'org.seleniumhq.selenium:selenium-java:4.43.0'
39+
testImplementation 'org.seleniumhq.selenium:selenium-java:4.48.0'
4040
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.4'
4141
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
4242
}

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.55@zip'
23+
tomcat 'org.apache.tomcat:tomcat:10.1.59@zip'
2424
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
2525
project(path: ':fineract-provider', configuration: 'runtimeElements'),
2626
project(path: ':fineract-security', configuration: 'runtimeElements'),

0 commit comments

Comments
 (0)