diff --git a/.github/workflows/docker-pr.yml b/.github/workflows/docker-pr.yml index 469263d..c49dd64 100644 --- a/.github/workflows/docker-pr.yml +++ b/.github/workflows/docker-pr.yml @@ -7,7 +7,7 @@ on: env: IMAGE_FQDN: ghcr.io/eugenmayer/kontextwork-converter - RUNTIME_VERSION: 0.1.6 + RUNTIME_VERSION: 0.1.7 jobs: docker: diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 21ad0d1..9a0e8f4 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -7,7 +7,7 @@ on: env: IMAGE_FQDN: ghcr.io/eugenmayer/kontextwork-converter - RUNTIME_VERSION: 0.1.6 + RUNTIME_VERSION: 0.1.7 jobs: docker: diff --git a/build.gradle b/build.gradle index e95e524..13a648d 100644 --- a/build.gradle +++ b/build.gradle @@ -3,10 +3,10 @@ buildscript { ext.kotlin_version = '1.9.21' ext { // @see https://mvnrepository.com/artifact/org.jodconverter/jodconverter-local - jodconverterVersion = '4.4.6' + jodconverterVersion = '4.4.7' // @see https://mvnrepository.com/artifact/org.mockito/mockito-core - mockitoVersion = '5.8.0' + mockitoVersion = '5.11.0' // @see https://mvnrepository.com/artifact/org.apache.tika/tika-parsers tikaVersion = '2.9.1' @@ -25,7 +25,7 @@ buildscript { jaxb = "4.0.4" // @see https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api-kotlin - kotlinLog4j = "1.3.0" + kotlinLog4j = "1.4.0" } repositories { mavenCentral() @@ -44,7 +44,7 @@ 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.0' + id 'org.springframework.boot' version '3.2.3' // much better output during running tests // see https://github.com/radarsh/gradle-test-logger-plugin for configuration options @@ -53,9 +53,9 @@ plugins { // @see https://plugins.gradle.org/plugin/org.sonarqube id "org.sonarqube" version "4.4.1.3373" - id "org.jetbrains.kotlin.jvm" version "1.9.21" - id "org.jetbrains.kotlin.plugin.allopen" version "1.9.21" - id "org.jetbrains.kotlin.plugin.spring" version "1.9.21" + id "org.jetbrains.kotlin.jvm" version "1.9.22" + id "org.jetbrains.kotlin.plugin.allopen" version "1.9.22" + id "org.jetbrains.kotlin.plugin.spring" version "1.9.22" } apply plugin: 'io.spring.dependency-management'