diff --git a/build.gradle b/build.gradle index f82a8fe..1f1cf18 100644 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,9 @@ buildscript { // @see https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-gradle-plugin - ext.kotlin_version = '1.9.24' + ext.kotlin_version = '1.9.25' ext { // @see https://mvnrepository.com/artifact/org.jodconverter/jodconverter-local - jodconverterVersion = '4.4.7' + jodconverterVersion = '4.4.8' // @see https://mvnrepository.com/artifact/org.mockito/mockito-core mockitoVersion = '5.12.0' @@ -44,18 +44,18 @@ plugins { // @see https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web // changing that will upgrade spring to the corresponding version - id 'org.springframework.boot' version '3.2.6' + id 'org.springframework.boot' version '3.3.3' // much better output during running tests // see https://github.com/radarsh/gradle-test-logger-plugin for configuration options id "com.adarshr.test-logger" version "4.0.0" // @see https://plugins.gradle.org/plugin/org.sonarqube - id "org.sonarqube" version "4.4.1.3373" + id "org.sonarqube" version "5.1.0.4882" - id "org.jetbrains.kotlin.jvm" version "1.9.24" - id "org.jetbrains.kotlin.plugin.allopen" version "1.9.24" - id "org.jetbrains.kotlin.plugin.spring" version "1.9.24" + id "org.jetbrains.kotlin.jvm" version "1.9.25" + id "org.jetbrains.kotlin.plugin.allopen" version "1.9.25" + id "org.jetbrains.kotlin.plugin.spring" version "1.9.25" } apply plugin: 'io.spring.dependency-management'