Skip to content

Commit

Permalink
Update all non-major dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Sep 27, 2024
1 parent d7c5947 commit 5725e37
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 19 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ plugins {
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.3.3' apply false
id 'org.springframework.boot' version '3.3.4' apply false
id 'net.ltgt.errorprone' version '3.1.0' apply false
id 'io.swagger.core.v3.swagger-gradle-plugin' version '2.2.23' apply false
id 'io.swagger.core.v3.swagger-gradle-plugin' version '2.2.24' apply false
id 'com.gorylenko.gradle-git-properties' version '2.4.2' apply false
id 'org.asciidoctor.jvm.convert' version '3.3.2' apply false
id 'org.asciidoctor.jvm.pdf' version '3.3.2' apply false
Expand All @@ -109,7 +109,7 @@ plugins {
id 'org.sonarqube' version '4.4.1.3373'
id 'com.github.andygoossens.modernizer' version '1.9.3' apply false
// TODO: upgrade to 6.0.4
id 'com.github.spotbugs' version '6.0.22' apply false
id 'com.github.spotbugs' version '6.0.23' apply false
id 'se.thinkcode.cucumber-runner' version '0.0.11' 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
Expand Down
26 changes: 13 additions & 13 deletions buildSrc/src/main/groovy/org.apache.fineract.dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ dependencyManagement {
mavenBom 'org.slf4j:slf4j-bom:2.0.16'
mavenBom 'io.micrometer:micrometer-bom:1.13.4'
mavenBom 'org.springframework:spring-framework-bom:6.1.13'
mavenBom 'org.springframework.boot:spring-boot-dependencies:3.3.3'
mavenBom 'org.springframework.boot:spring-boot-dependencies:3.3.4'
mavenBom 'io.awspring.cloud:spring-cloud-aws-dependencies:3.2.0'
mavenBom 'io.opentelemetry:opentelemetry-bom:1.42.1'
mavenBom 'org.jetbrains.kotlin:kotlin-bom:1.9.25'
mavenBom 'org.junit:junit-bom:5.11.0'
mavenBom 'com.fasterxml.jackson:jackson-bom:2.17.2'
mavenBom 'io.cucumber:cucumber-bom:7.18.1'
mavenBom 'org.junit:junit-bom:5.11.1'
mavenBom 'com.fasterxml.jackson:jackson-bom:2.18.0'
mavenBom 'io.cucumber:cucumber-bom:7.19.0'
mavenBom 'io.netty:netty-bom:4.1.113.Final'
mavenBom 'org.mockito:mockito-bom:5.13.0'
mavenBom 'software.amazon.awssdk:bom:2.28.2'
mavenBom 'org.mockito:mockito-bom:5.14.0'
mavenBom 'software.amazon.awssdk:bom:2.28.10'
mavenBom 'io.github.resilience4j:resilience4j-bom:2.2.0'
}

Expand Down Expand Up @@ -65,13 +65,13 @@ dependencyManagement {
exclude 'com.sun.mail:javax.mail'
exclude 'javax.activation:activation'
}
dependency 'commons-io:commons-io:2.16.1'
dependency 'commons-io:commons-io:2.17.0'
dependency 'com.github.librepdf:openpdf:2.0.3'
dependency ('org.mnode.ical4j:ical4j:3.2.19') {
exclude 'com.sun.mail:javax.mail'
exclude 'org.codehaus.groovy:groovy'
}
dependency 'org.apache.commons:commons-csv:1.11.0'
dependency 'org.apache.commons:commons-csv:1.12.0'
dependency 'org.quartz-scheduler:quartz:2.3.2'
dependency 'org.ehcache:ehcache:3.10.8'
dependency 'com.github.spullara.mustache.java:compiler:0.9.14'
Expand Down Expand Up @@ -122,7 +122,7 @@ dependencyManagement {
dependency 'org.apache.bval:org.apache.bval.bundle:3.0.1'
dependency 'joda-time:joda-time:2.13.0'

dependency 'io.github.classgraph:classgraph:4.8.175'
dependency 'io.github.classgraph:classgraph:4.8.176'
dependency 'org.awaitility:awaitility:4.2.2'
// TODO: upgrade to 4.8.3
dependency 'com.github.spotbugs:spotbugs-annotations:4.8.6'
Expand Down Expand Up @@ -245,9 +245,9 @@ dependencyManagement {

dependency 'com.github.tomakehurst:wiremock-standalone:3.0.1'

dependency 'io.cucumber:cucumber-java:7.18.1'
dependency 'io.cucumber:cucumber-java8:7.18.1'
dependency 'io.cucumber:cucumber-junit-platform-engine:7.18.1'
dependency 'io.cucumber:cucumber-spring:7.18.1'
dependency 'io.cucumber:cucumber-java:7.19.0'
dependency 'io.cucumber:cucumber-java8:7.19.0'
dependency 'io.cucumber:cucumber-junit-platform-engine:7.19.0'
dependency 'io.cucumber:cucumber-spring:7.19.0'
}
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
7 changes: 5 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
Expand Down Expand Up @@ -55,7 +57,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down Expand Up @@ -84,7 +86,8 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 2 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
Expand Down

0 comments on commit 5725e37

Please sign in to comment.