Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
EugenMayer committed Dec 2, 2023
1 parent 2613228 commit 48193f6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .run/ConverterApplication.run.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="ConverterApplication" type="SpringBootApplicationConfigurationType" factoryName="Spring Boot">
<module name="officeconverter.main" />
<module name="de.kontextwork.officeconverter.main" />
<option name="SPRING_BOOT_MAIN_CLASS" value="de.kontextwork.converter.ConverterApplication" />
<method v="2">
<option name="Make" enabled="true" />
Expand Down
18 changes: 11 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
buildscript {
ext.kotlin_version = '1.9.10'
// @see https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-gradle-plugin
ext.kotlin_version = '1.9.21'
ext {
// @see https://mvnrepository.com/artifact/org.jodconverter/jodconverter-local
jodconverterVersion = '4.4.6'

// @see https://mvnrepository.com/artifact/org.mockito/mockito-core
mockitoVersion = '5.6.0'
mockitoVersion = '5.7.0'

// @see https://mvnrepository.com/artifact/org.apache.tika/tika-parsers
tikaVersion = '2.9.1'
Expand All @@ -14,14 +15,17 @@ buildscript {
lombokVersion = '1.18.30'

// @see https://mvnrepository.com/artifact/commons-io/commons-io
commonsIo = '2.15.0'
commonsIo = '2.15.1'

// javax.annotation needed when compiling against > Java 8 since it is no longer included
// @see https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api
javaxAnnotations = '1.3.2'

// @see https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime
jaxb = "4.0.4"

// @see https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api-kotlin
kotlinLog4j = "1.3.0"
}
repositories {
mavenCentral()
Expand All @@ -40,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.1.5'
id 'org.springframework.boot' version '3.2.0'

// much better output during running tests
// see https://github.com/radarsh/gradle-test-logger-plugin for configuration options
Expand All @@ -49,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.10"
id "org.jetbrains.kotlin.plugin.allopen" version "1.9.10"
id "org.jetbrains.kotlin.plugin.spring" version "1.9.10"
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"
}

apply plugin: 'io.spring.dependency-management'
Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {

"org.jetbrains.kotlin:kotlin-reflect",
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
'org.apache.logging.log4j:log4j-api-kotlin:1.3.0'
"org.apache.logging.log4j:log4j-api-kotlin:$kotlinLog4j"
)

testImplementation(
Expand Down

0 comments on commit 48193f6

Please sign in to comment.