Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// TODO: this is work in progress, please follow FINERACT-1171
buildscript {
ext {
jacocoVersion = '0.8.14'
jacocoVersion = '0.8.15'
fineractCustomProjects = []
fineractJavaProjects = subprojects.findAll{
[
Expand Down Expand Up @@ -100,7 +100,7 @@ buildscript {
// needs a PropertyPlaceholderHelper constructor that Spring Framework 7 removed.
// TODO: drop this pin once com.github.hierynomus.license ships a license-maven-plugin
// that works against Spring Framework 7. Buildscript-only; no runtime effect.
force 'org.springframework:spring-core:6.2.18'
force 'org.springframework:spring-core:6.2.19'
}
}

Expand All @@ -111,8 +111,8 @@ buildscript {
classpath 'com.google.cloud.tools:jib-layer-filter-extension-gradle:0.3.0'
classpath 'org.apache.commons:commons-lang3:3.20.0'
// Gradle 9 no longer bundles groovy-sql; keep this aligned with Gradle's embedded Groovy version.
classpath 'org.apache.groovy:groovy-sql:4.0.32'
classpath 'io.swagger.core.v3:swagger-jaxrs2-jakarta:2.2.49'
classpath 'org.apache.groovy:groovy-sql:4.0.33'
classpath 'io.swagger.core.v3:swagger-jaxrs2-jakarta:2.2.55'
classpath 'jakarta.servlet:jakarta.servlet-api:6.1.0'
}
}
Expand Down Expand Up @@ -204,7 +204,7 @@ allprojects {
resolutionStrategy {
dependencySubstitution {
// Substitution is to resolve CVE-2025-12183
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.11.0')
substitute module('org.lz4:lz4-java') using module('at.yawk.lz4:lz4-java:1.11.3')
}
}
}
Expand Down Expand Up @@ -582,7 +582,7 @@ configure(project.fineractJavaProjects) {
// Configuration for the Checkstyle plugin
// https://docs.gradle.org/current/userguide/checkstyle_plugin.html
dependencies {
checkstyle 'com.puppycrawl.tools:checkstyle:13.4.2'
checkstyle 'com.puppycrawl.tools:checkstyle:13.11.0'
checkstyle 'com.github.sevntu-checkstyle:sevntu-checks:1.44.1'
}

Expand Down Expand Up @@ -612,7 +612,7 @@ configure(project.fineractJavaProjects) {
// Configuration for the errorprone plugin
// https://github.com/tbroyer/gradle-errorprone-plugin
dependencies {
errorprone "com.google.errorprone:error_prone_core:2.49.0"
errorprone "com.google.errorprone:error_prone_core:2.50.0"
}

tasks.withType(JavaCompile).configureEach {
Expand Down
2 changes: 1 addition & 1 deletion fineract-client-feign/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ spotbugsTest {
}

jacoco {
toolVersion = "0.8.14"
toolVersion = "0.8.15"
}

jacocoTestReport {
Expand Down
14 changes: 7 additions & 7 deletions fineract-client-feign/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
dependencies {
// Feign dependencies
implementation(
'io.github.openfeign:feign-core:13.12',
'io.github.openfeign:feign-jackson:13.12',
'io.github.openfeign:feign-slf4j:13.12',
'io.github.openfeign:feign-hc5:13.12',
'io.github.openfeign:feign-okhttp:13.12',
'io.github.openfeign:feign-core:13.15',
'io.github.openfeign:feign-jackson:13.15',
'io.github.openfeign:feign-slf4j:13.15',
'io.github.openfeign:feign-hc5:13.15',
'io.github.openfeign:feign-okhttp:13.15',
'io.github.openfeign.form:feign-form:3.8.0',
'org.apache.httpcomponents.client5:httpclient5:5.6.1',
'org.apache.httpcomponents.client5:httpclient5:5.6.4',
'com.squareup.okhttp3:okhttp',
'com.fasterxml.jackson.core:jackson-databind',
'com.fasterxml.jackson.datatype:jackson-datatype-jsr310',
'com.fasterxml.jackson.datatype:jackson-datatype-jdk8',
'org.openapitools:jackson-databind-nullable:0.2.6',
'org.openapitools:jackson-databind-nullable:0.2.11',
'jakarta.annotation:jakarta.annotation-api',
'io.swagger.core.v3:swagger-annotations-jakarta',
'org.apache.commons:commons-lang3',
Expand Down
6 changes: 3 additions & 3 deletions fineract-doc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ buildscript {
dependencies {
classpath 'org.asciidoctor:asciidoctor-gradle-jvm:4.0.5'
classpath 'org.asciidoctor:asciidoctor-gradle-jvm-pdf:4.0.5'
classpath 'org.yaml:snakeyaml:2.6'
classpath 'org.yaml:snakeyaml:2.7'
}
}

Expand All @@ -42,8 +42,8 @@ apply plugin: 'org.asciidoctor.jvm.pdf'
configurations.all {
resolutionStrategy {
// Force specific versions of dependencies to avoid conflicts
force 'org.yaml:snakeyaml:2.6',
'org.jruby:jruby-complete:10.1.0.0'
force 'org.yaml:snakeyaml:2.7',
'org.jruby:jruby-complete:10.1.2.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions fineract-e2e-tests-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ dependencies {
testImplementation 'com.github.spotbugs:spotbugs-annotations'

testImplementation 'com.squareup.retrofit2:retrofit'
testImplementation 'io.github.openfeign:feign-core:13.12'
testImplementation 'io.github.openfeign:feign-jackson:13.12'
testImplementation 'io.github.openfeign:feign-core:13.15'
testImplementation 'io.github.openfeign:feign-jackson:13.15'
testImplementation 'org.apache.httpcomponents:httpclient'
testImplementation 'org.apache.commons:commons-lang3'
testImplementation 'com.google.guava:guava'
Expand Down
4 changes: 2 additions & 2 deletions fineract-provider/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// Spins up a real PostgreSQL for self-contained persistence tests (e.g. JpaJdbcSameTransactionVisibilityTest) that
// need a real EclipseLink EntityManagerFactory against a real database. Skipped automatically when Docker is absent.
testImplementation 'org.testcontainers:postgresql:1.20.4'
testImplementation 'org.testcontainers:junit-jupiter:1.20.4'
testImplementation 'org.testcontainers:postgresql:1.21.4'
testImplementation 'org.testcontainers:junit-jupiter:1.21.4'
testImplementation 'org.mockito:mockito-core'
testImplementation 'org.mockito:mockito-junit-jupiter'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
Expand Down
2 changes: 1 addition & 1 deletion oauth2-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ description = 'Fineract Integration Tests for OAuth2'
apply from: 'dependencies.gradle'

dependencies {
testImplementation 'org.seleniumhq.selenium:selenium-java:4.43.0'
testImplementation 'org.seleniumhq.selenium:selenium-java:4.49.0'
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.4'
testImplementation 'org.junit.jupiter:junit-jupiter'
}
Expand Down