Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
id("io.spring.dependency-management") version "1.1.7"

// Build and push docker images
id("com.google.cloud.tools.jib") version "3.5.2"
id("com.google.cloud.tools.jib") version "3.5.3"
}

repositories {
Expand Down Expand Up @@ -44,7 +44,7 @@ dependencies {
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.1")

// Postgres Database
implementation("org.postgresql:postgresql:42.7.9")
implementation("org.postgresql:postgresql:42.7.10")

// Caching with Ehcache https://www.ehcache.org/
implementation("org.ehcache:ehcache:3.11.1")
Expand Down Expand Up @@ -79,7 +79,7 @@ dependencies {
testImplementation("org.testcontainers:junit-jupiter:1.21.4")
testImplementation("org.testcontainers:postgresql:1.21.4")
// Mocking with Mockk (https://mockk.io/)
testImplementation("io.mockk:mockk:1.14.7")
testImplementation("io.mockk:mockk:1.14.9")
}

// Fix version requirement from Kotest
Expand Down
Loading