Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
benediktschwab committed May 8, 2024
1 parent b65d0a7 commit c92c93f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ allprojects {
}

java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
}

Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ object DependencyVersions {
const val mapstruct = "1.5.5.Final"

// io libraries
const val clikt = "4.2.2"
const val clikt = "4.4.0"
const val mordant = "1.2.1"
const val commonsIO = "2.16.1"
const val commonsCSV = "1.11.0"
const val commonsLang = "3.14.0"
const val commonsCompress = "1.25.0"
const val commonsCompress = "1.26.1"
const val zstdJni = "1.5.5-11"
const val emojiJava = "5.1.1"

Expand All @@ -58,7 +58,7 @@ object DependencyVersions {

// geo libraries
const val proj4 = "1.3.0"
const val citygml4j = "3.1.0"
const val citygml4j = "3.2.0"
}

object Dependencies {
Expand Down

0 comments on commit c92c93f

Please sign in to comment.