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
2 changes: 1 addition & 1 deletion .github/workflows/build-mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

services:
mariadb:
image: mariadb:11.5.2
image: mariadb:11.8.5
ports:
- 3306:3306
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

services:
mysql:
image: mysql:9.1
image: mysql:9.5
ports:
- 3306:3306
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

services:
postgresql:
image: postgres:17.4
image: postgres:17.7
ports:
- 5432:5432
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/liquibase-only-postgresql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

services:
postgresql:
image: postgres:17.4
image: postgres:17.7
ports:
- 5432:5432
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

services:
postgresql:
image: postgres:17.4
image: postgres:17.7
ports:
- 5432:5432
env:
Expand Down
26 changes: 13 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,22 +101,22 @@ plugins {
id 'org.nosphere.apache.rat' version '0.8.1' apply false
id 'com.github.hierynomus.license' version '0.16.1' apply false
id 'com.github.jk1.dependency-license-report' version '2.9' apply false
id 'org.zeroturnaround.gradle.jrebel' version '1.2.0' apply false
id 'org.springframework.boot' version '3.5.5' apply false
id 'net.ltgt.errorprone' version '4.1.0' apply false
id 'io.swagger.core.v3.swagger-gradle-plugin' version '2.2.23' apply false
id 'com.gorylenko.gradle-git-properties' version '2.4.2' apply false
id 'org.zeroturnaround.gradle.jrebel' version '1.2.2' apply false
id 'org.springframework.boot' version '3.5.8' apply false
id 'net.ltgt.errorprone' version '4.3.0' apply false
id 'io.swagger.core.v3.swagger-gradle-plugin' version '2.2.41' apply false
id 'com.gorylenko.gradle-git-properties' version '2.5.4' apply false
id 'org.asciidoctor.jvm.convert' version '4.0.5' apply false
id 'org.asciidoctor.jvm.pdf' version '4.0.5' apply false
id 'com.google.cloud.tools.jib' version '3.4.5' apply false
id 'org.sonarqube' version '6.0.1.5171'
id 'com.github.andygoossens.modernizer' version '1.10.0' apply false
id 'com.github.spotbugs' version '6.0.26' apply false
id 'se.thinkcode.cucumber-runner' version '0.0.11' apply false
id 'com.google.cloud.tools.jib' version '3.5.1' apply false
id 'org.sonarqube' version '6.3.1.5724'
id 'com.github.andygoossens.modernizer' version '1.12.0' apply false
id 'com.github.spotbugs' version '6.4.5' apply false
id 'se.thinkcode.cucumber-runner' version '0.0.12' apply false
id "com.github.davidmc24.gradle.plugin.avro-base" version "1.9.1" apply false
id 'org.openapi.generator' version '7.8.0' apply false
id 'com.gradleup.shadow' version '8.3.5' apply false
id 'me.champeau.jmh' version '0.7.1' apply false
id 'org.openapi.generator' version '7.17.0' apply false
id 'com.gradleup.shadow' version '8.3.9' apply false
id 'me.champeau.jmh' version '0.7.3' apply false
}

apply from: "${rootDir}/buildSrc/src/main/groovy/org.apache.fineract.release.gradle"
Expand Down
182 changes: 91 additions & 91 deletions buildSrc/src/main/groovy/org.apache.fineract.dependencies.gradle

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fineract-e2e-tests-runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*/

plugins {
id 'se.thinkcode.cucumber-runner' version '0.0.11'
id 'se.thinkcode.cucumber-runner' version '0.0.12'
id 'io.qameta.allure' version '2.12.0'
}

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

plugins {
id 'com.gradle.develocity' version '3.18.2'
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2'
id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.4.0'
}

def isCI = System.getenv('JENKINS_URL') != null
Expand Down