Skip to content

Commit

Permalink
Update spring boot to 3.2.3 and update runtim version
Browse files Browse the repository at this point in the history
  • Loading branch information
EugenMayer authored Mar 6, 2024
1 parent 15df8f1 commit c5216ab
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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()
Expand All @@ -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
Expand All @@ -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'
Expand Down

0 comments on commit c5216ab

Please sign in to comment.