Skip to content

Commit

Permalink
GH-1899 Update dependencies in reposilite-backend module
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Aug 7, 2023
1 parent f00ff00 commit 51daaef
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
application
`maven-publish`

val kotlinVersion = "1.8.22"
val kotlinVersion = "1.9.0"
kotlin("jvm") version kotlinVersion
kotlin("kapt") version kotlinVersion

Expand Down Expand Up @@ -104,14 +104,14 @@ subprojects {
group = "com.reposilite"

dependencies {
val unirest = "3.14.2"
val unirest = "3.14.5"
testImplementation("com.konghq:unirest-java:$unirest")
testImplementation("com.konghq:unirest-objectmapper-jackson:$unirest")

val assertJ = "3.24.2"
testImplementation("org.assertj:assertj-core:$assertJ")

val junit = "5.9.3"
val junit = "5.10.0"
testImplementation("org.junit.jupiter:junit-jupiter-params:$junit")
testImplementation("org.junit.jupiter:junit-jupiter-api:$junit")
testImplementation("org.junit.jupiter:junit-jupiter-engine:$junit")
Expand Down
16 changes: 8 additions & 8 deletions reposilite-backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ dependencies {
val detekt = "1.23.0"
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:$detekt")

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

val javalin = "5.6.1"
val javalin = "5.6.2"
api("io.javalin:javalin:$javalin")
api("io.javalin.community.ssl:ssl-plugin:$javalin")

val javalinOpenApi = "5.6.1"
val javalinOpenApi = "5.6.2"
api("io.javalin.community.openapi:javalin-openapi-plugin:$javalinOpenApi")
kapt("io.javalin.community.openapi:openapi-annotation-processor:$javalinOpenApi")

val javalinRouting = "5.5.0-RC.3"
val javalinRouting = "5.6.2-RC.1"
api("io.javalin.community.routing:routing-dsl:$javalinRouting")

val bcrypt = "0.10.2"
Expand All @@ -69,14 +69,14 @@ dependencies {
kapt("info.picocli:picocli-codegen:$picocli")
api("info.picocli:picocli:$picocli")

val awssdk = "2.20.97"
val awssdk = "2.20.121"
implementation(platform("software.amazon.awssdk:bom:$awssdk"))
implementation("software.amazon.awssdk:s3:$awssdk")

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

val exposed = "0.41.1"
val exposed = "0.42.0"
api("org.jetbrains.exposed:exposed-core:$exposed")
api("org.jetbrains.exposed:exposed-dao:$exposed")
api("org.jetbrains.exposed:exposed-jdbc:$exposed")
Expand All @@ -87,7 +87,7 @@ dependencies {
implementation("mysql:mysql-connector-java:8.0.33")
implementation("org.mariadb.jdbc:mariadb-java-client:3.1.4")
implementation("org.postgresql:postgresql:42.6.0")
implementation("com.h2database:h2:2.1.214")
implementation("com.h2database:h2:2.2.220")

val exposedUpsert = "1.2.1"
api("net.dzikoysk:exposed-upsert:$exposedUpsert")
Expand All @@ -104,7 +104,7 @@ dependencies {
implementation("com.google.http-client:google-http-client:$httpClient") { exclude(group = "commons-codec", module = "commons-codec")}
testImplementation("com.google.http-client:google-http-client-jackson2:$httpClient")

val commonsCoded = "1.15"
val commonsCoded = "1.16"
api("commons-codec:commons-codec:$commonsCoded")

val jansi = "2.4.0"
Expand Down
2 changes: 1 addition & 1 deletion reposilite-plugins/groovy-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ application {

dependencies {
compileOnly(project(":reposilite-backend"))
implementation("org.apache.groovy:groovy:4.0.12")
implementation("org.apache.groovy:groovy:4.0.13")
}

tasks.withType<ShadowJar> {
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 "1.8.22"
kotlin("plugin.serialization") version "1.9.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.54.0")
implementation("com.charleskorn.kaml:kaml-jvm:0.55.0")
}

tasks.withType<ShadowJar> {
Expand Down
2 changes: 1 addition & 1 deletion reposilite-plugins/swagger-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ application {

dependencies {
compileOnly(project(":reposilite-backend"))
implementation("io.javalin.community.openapi:javalin-swagger-plugin:5.5.0-1")
implementation("io.javalin.community.openapi:javalin-swagger-plugin:5.6.2")
}

tasks.withType<ShadowJar> {
Expand Down

0 comments on commit 51daaef

Please sign in to comment.