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
16 changes: 8 additions & 8 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.12'
jacocoVersion = '0.8.14'
retrofitVersion = '2.9.0'
okhttpVersion = '4.9.3'
fineractCustomProjects = []
Expand Down Expand Up @@ -87,7 +87,7 @@ buildscript {
classpath 'org.eclipse.persistence:eclipselink:4.0.6'
classpath 'jakarta.ws.rs:jakarta.ws.rs-api:3.1.0'
classpath 'com.google.cloud.tools:jib-layer-filter-extension-gradle:0.3.0'
classpath 'org.apache.commons:commons-lang3:3.18.0'
classpath 'org.apache.commons:commons-lang3:3.20.0'
classpath 'io.swagger.core.v3:swagger-jaxrs2-jakarta:2.2.22'
classpath 'jakarta.servlet:jakarta.servlet-api:6.1.0'
}
Expand Down Expand Up @@ -529,7 +529,7 @@ configure(project.fineractJavaProjects) {
// Configuration for the Checkstyle plugin
// https://docs.gradle.org/current/userguide/checkstyle_plugin.html
dependencies {
checkstyle 'com.puppycrawl.tools:checkstyle:11.0.0'
checkstyle 'com.puppycrawl.tools:checkstyle:11.1.0'
checkstyle 'com.github.sevntu-checkstyle:sevntu-checks:1.44.1'
}

Expand All @@ -551,7 +551,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.35.1"
errorprone "com.google.errorprone:error_prone_core:2.45.0"
}

tasks.withType(JavaCompile).configureEach {
Expand Down Expand Up @@ -798,10 +798,10 @@ configure(project.fineractCustomProjects) {
'org.awaitility:awaitility',
'io.github.classgraph:classgraph',
'io.cucumber:cucumber-core',
'io.cucumber:cucumber-java:7.20.1',
'io.cucumber:cucumber-java8:7.20.1',
'io.cucumber:cucumber-junit-platform-engine:7.20.1',
'io.cucumber:cucumber-spring:7.20.1',
'io.cucumber:cucumber-java:7.32.0',
'io.cucumber:cucumber-java8:7.32.0',
'io.cucumber:cucumber-junit-platform-engine:7.32.0',
'io.cucumber:cucumber-spring:7.32.0',
)

testCompileOnly('org.projectlombok:lombok')
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 @@ -167,7 +167,7 @@ spotbugsTest {
}

jacoco {
toolVersion = "0.8.11"
toolVersion = "0.8.14"
}

jacocoTestReport {
Expand Down
12 changes: 6 additions & 6 deletions fineract-client-feign/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,24 @@ dependencies {
'io.github.openfeign:feign-hc5:13.6',
'io.github.openfeign:feign-okhttp:13.6',
'io.github.openfeign.form:feign-form:3.8.0',
'org.apache.httpcomponents.client5:httpclient5:5.2.1',
'org.apache.httpcomponents.client5:httpclient5:5.5.1',
'com.squareup.okhttp3:okhttp:4.12.0',
'com.fasterxml.jackson.core:jackson-databind',
'com.fasterxml.jackson.datatype:jackson-datatype-jsr310',
'com.fasterxml.jackson.datatype:jackson-datatype-jdk8',
'jakarta.annotation:jakarta.annotation-api:3.0.0',
'io.swagger.core.v3:swagger-annotations-jakarta:2.2.15',
'org.apache.commons:commons-lang3:3.12.0',
'org.apache.commons:commons-lang3:3.20.0',
'org.slf4j:slf4j-api:1.7.36',
'org.projectlombok:lombok'
)

// Test dependencies
testImplementation(
'org.junit.jupiter:junit-jupiter-api:5.11.3',
'org.junit.jupiter:junit-jupiter-engine:5.11.3',
'org.mockito:mockito-core:5.14.2',
'org.assertj:assertj-core:3.26.3',
'org.junit.jupiter:junit-jupiter-api:5.14.1',
'org.junit.jupiter:junit-jupiter-engine:5.14.1',
'org.mockito:mockito-core:5.20.0',
'org.assertj:assertj-core:3.27.6',
'org.slf4j:slf4j-simple:1.7.36',
'org.wiremock:wiremock-standalone'
)
Expand Down
40 changes: 20 additions & 20 deletions fineract-e2e-tests-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -67,38 +67,38 @@ dependencies {

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

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

testImplementation 'io.cucumber:cucumber-java:7.20.1'
testImplementation 'io.cucumber:cucumber-junit:7.20.1'
testImplementation 'io.cucumber:cucumber-spring:7.20.1'
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.20.1'
testImplementation 'io.cucumber:cucumber-java:7.32.0'
testImplementation 'io.cucumber:cucumber-junit:7.32.0'
testImplementation 'io.cucumber:cucumber-spring:7.32.0'
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.32.0'

testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.1'
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.31.0'

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
testImplementation 'org.assertj:assertj-core:3.27.6'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.14.1'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.1'

testCompileOnly 'org.projectlombok:lombok:1.18.36'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
testCompileOnly 'org.projectlombok:lombok:1.18.42'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'

testImplementation "ch.qos.logback:logback-core:1.5.17"
testImplementation "ch.qos.logback:logback-classic:1.5.17"
testImplementation "ch.qos.logback:logback-core:1.5.21"
testImplementation "ch.qos.logback:logback-classic:1.5.21"

testImplementation 'org.apache.activemq:activemq-client:6.1.6'
testImplementation "org.apache.avro:avro:1.12.0"
testImplementation "org.awaitility:awaitility:4.2.2"
testImplementation 'io.github.classgraph:classgraph:4.8.179'
testImplementation 'org.apache.activemq:activemq-client:6.2.0'
testImplementation "org.apache.avro:avro:1.12.1"
testImplementation "org.awaitility:awaitility:4.3.0"
testImplementation 'io.github.classgraph:classgraph:4.8.184'

testImplementation 'org.apache.commons:commons-collections4:4.4'
testImplementation 'org.apache.commons:commons-collections4:4.5.0'
}

tasks.withType(JavaCompile).configureEach {
Expand Down
40 changes: 20 additions & 20 deletions fineract-e2e-tests-runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,37 +39,37 @@ dependencies {
implementation 'org.springframework:spring-test'
testImplementation 'org.springframework:spring-jms'

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

testImplementation 'org.junit.platform:junit-platform-suite:1.11.4'
testImplementation 'org.junit.platform:junit-platform-console:1.11.4'
testImplementation 'io.cucumber:cucumber-java:7.20.1'
testImplementation 'io.cucumber:cucumber-junit:7.20.1'
testImplementation 'io.cucumber:cucumber-spring:7.20.1'
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.20.1'
testImplementation 'org.junit.platform:junit-platform-suite:1.14.1'
testImplementation 'org.junit.platform:junit-platform-console:1.14.1'
testImplementation 'io.cucumber:cucumber-java:7.32.0'
testImplementation 'io.cucumber:cucumber-junit:7.32.0'
testImplementation 'io.cucumber:cucumber-spring:7.32.0'
testImplementation 'io.cucumber:cucumber-junit-platform-engine:7.32.0'

testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.29.1'
testImplementation 'io.qameta.allure:allure-cucumber7-jvm:2.31.0'

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.assertj:assertj-core:3.27.6'

testCompileOnly 'org.projectlombok:lombok:1.18.36'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.36'
testCompileOnly 'org.projectlombok:lombok:1.18.42'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.42'

testImplementation "ch.qos.logback:logback-core:1.5.17"
testImplementation "ch.qos.logback:logback-classic:1.5.17"
testImplementation "ch.qos.logback:logback-core:1.5.21"
testImplementation "ch.qos.logback:logback-classic:1.5.21"

testImplementation 'org.apache.activemq:activemq-client:6.1.6'
testImplementation "org.apache.avro:avro:1.12.0"
testImplementation "org.awaitility:awaitility:4.2.2"
testImplementation 'io.github.classgraph:classgraph:4.8.179'
testImplementation 'org.apache.activemq:activemq-client:6.2.0'
testImplementation "org.apache.avro:avro:1.12.1"
testImplementation "org.awaitility:awaitility:4.3.0"
testImplementation 'io.github.classgraph:classgraph:4.8.184'

testImplementation 'org.apache.commons:commons-collections4:4.4'
testImplementation 'org.apache.commons:commons-collections4:4.5.0'
}

tasks.named('test') {
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
// testCompile dependencies are ONLY used in src/test, not src/main.
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
//
tomcat 'org.apache.tomcat:tomcat:10.1.42@zip'
tomcat 'org.apache.tomcat:tomcat:10.1.49@zip'
def providerMainOutput = project(':fineract-provider').extensions.getByType(SourceSetContainer).named('main').get().output
testImplementation( providerMainOutput,
project(path: ':fineract-core', configuration: 'runtimeElements'),
Expand Down
4 changes: 2 additions & 2 deletions oauth2-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ configurations {
}
dependencies {
driver 'com.mysql:mysql-connector-j'
testImplementation 'org.seleniumhq.selenium:selenium-java:4.21.0'
testImplementation 'org.seleniumhq.selenium:selenium-java:4.38.0'
testImplementation 'io.github.bonigarcia:webdrivermanager:6.3.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.1'
}

cargo {
Expand Down
2 changes: 1 addition & 1 deletion oauth2-tests/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
// testCompile dependencies are ONLY used in src/test, not src/main.
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
//
tomcat 'org.apache.tomcat:tomcat:10.1.42@zip'
tomcat 'org.apache.tomcat:tomcat:10.1.49@zip'
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
project(path: ':fineract-provider', configuration: 'runtimeElements'),
'org.junit.jupiter:junit-jupiter-api',
Expand Down
2 changes: 1 addition & 1 deletion twofactor-tests/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
// testCompile dependencies are ONLY used in src/test, not src/main.
// Do NOT repeat dependencies which are ALREADY in implementation or runtimeOnly!
//
tomcat 'org.apache.tomcat:tomcat:10.1.42@zip'
tomcat 'org.apache.tomcat:tomcat:10.1.49@zip'
testImplementation( files("$rootDir/fineract-provider/build/classes/java/main/"),
project(path: ':fineract-provider', configuration: 'runtimeElements'),
'org.junit.jupiter:junit-jupiter-api',
Expand Down
Loading