Skip to content

Commit

Permalink
GH-2305 Bump dependencies in reposilite-backend module
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Dec 9, 2024
1 parent 9e4e93f commit 33213b9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {
application
`maven-publish`

val kotlinVersion = "2.0.21"
val kotlinVersion = "2.1.0"
kotlin("jvm") version kotlinVersion
kotlin("kapt") version kotlinVersion

Expand Down
18 changes: 9 additions & 9 deletions reposilite-backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {
// val detekt = "1.23.5"
// detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:$detekt")

val kotlin = "2.0.21"
val kotlin = "2.1.0"
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlin")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin")

Expand Down Expand Up @@ -77,42 +77,42 @@ dependencies {
kapt("info.picocli:picocli-codegen:$picocli")
api("info.picocli:picocli:$picocli")

val awssdk = "2.29.19"
val awssdk = "2.29.29"
implementation(platform("software.amazon.awssdk:bom:$awssdk"))
implementation("software.amazon.awssdk:s3:$awssdk")

val awsSdkV1 = "1.12.773"
val awsSdkV1 = "1.12.779"
testImplementation("com.amazonaws:aws-java-sdk-s3:$awsSdkV1")

val exposed = "0.56.0"
val exposed = "0.57.0"
api("org.jetbrains.exposed:exposed-core:$exposed")
api("org.jetbrains.exposed:exposed-dao:$exposed")
api("org.jetbrains.exposed:exposed-jdbc:$exposed")
api("org.jetbrains.exposed:exposed-java-time:$exposed")

// Drivers
implementation("com.zaxxer:HikariCP:6.2.1")
implementation("org.xerial:sqlite-jdbc:3.47.0.0")
implementation("org.xerial:sqlite-jdbc:3.47.1.0")
implementation("org.mariadb.jdbc:mariadb-java-client:3.5.1")
implementation("org.postgresql:postgresql:42.7.4")
implementation("com.h2database:h2:2.3.232")
implementation("com.mysql:mysql-connector-j:9.1.0") {
exclude(group = "com.google.protobuf", module = "protobuf-java")
}
implementation("com.google.protobuf:protobuf-java:4.28.3")
implementation("com.google.protobuf:protobuf-java:4.29.1")

val exposedUpsert = "1.2.2"
api("net.dzikoysk:exposed-upsert:$exposedUpsert")

val jackson = "2.18.1"
val jackson = "2.18.2"
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jackson")
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson")
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jackson")

val jsonSchema = "4.37.0"
implementation("com.github.victools:jsonschema-generator:$jsonSchema")

val httpClient = "1.45.1"
val httpClient = "1.45.2"
implementation("com.google.http-client:google-http-client:$httpClient") {
exclude(group = "commons-codec", module = "commons-codec")
exclude(group = "com.google.guava", module = "guava")
Expand Down Expand Up @@ -145,7 +145,7 @@ dependencies {
}
testImplementation("org.apache.commons:commons-compress:1.27.1")

val ldap = "7.0.1"
val ldap = "7.0.2"
testImplementation("com.unboundid:unboundid-ldapsdk:$ldap")
}

Expand Down
4 changes: 2 additions & 2 deletions reposilite-plugins/migration-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
plugins {
id("com.github.johnrengelman.shadow") version "8.1.1"
kotlin("jvm")
kotlin("plugin.serialization") version "2.0.21"
kotlin("plugin.serialization") version "2.1.0"
}

application {
Expand All @@ -29,7 +29,7 @@ application {
dependencies {
compileOnly(project(":reposilite-backend"))
testImplementation(project(":reposilite-backend"))
implementation("com.charleskorn.kaml:kaml-jvm:0.65.0")
implementation("com.charleskorn.kaml:kaml-jvm:0.66.0")
}

tasks.withType<ShadowJar> {
Expand Down
2 changes: 1 addition & 1 deletion reposilite-plugins/prometheus-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ application {
dependencies {
compileOnly(project(":reposilite-backend"))

val prometheusMetrics = "1.3.3"
val prometheusMetrics = "1.3.4"
implementation("io.prometheus:prometheus-metrics-core:$prometheusMetrics")
implementation("io.prometheus:prometheus-metrics-instrumentation-jvm:$prometheusMetrics")
implementation("io.prometheus:prometheus-metrics-exporter-common:$prometheusMetrics")
Expand Down

0 comments on commit 33213b9

Please sign in to comment.