Skip to content

Commit

Permalink
Bump postgres and other dependencies (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
geir-waagboe authored Feb 28, 2024
1 parent 2104cbe commit 6f8b8f6
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ version = "0.0.1"
object Versions {
const val confluent = "7.5.1"
const val flyway = "9.22.3"
const val hikari = "5.0.1"
const val hikari = "5.1.0"
const val isdialogmoteSchema = "1.0.5"
const val jacksonDataType = "2.16.1"
const val jetty = "9.4.54.v20240208"
const val kafka = "3.6.1"
const val kluent = "1.73"
const val ktor = "2.3.8"
Expand All @@ -18,15 +19,15 @@ object Versions {
const val micrometerRegistry = "1.12.2"
const val nimbusJoseJwt = "9.37.3"
const val mockk = "1.13.9"
const val postgres = "42.6.0"
const val postgres = "42.7.2"
val postgresEmbedded = if (Os.isFamily(Os.FAMILY_MAC)) "1.0.0" else "0.13.4"
const val scala = "2.13.12"
const val spek = "2.0.19"
}
plugins {
kotlin("jvm") version "1.9.22"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("org.jlleitschuh.gradle.ktlint") version "11.4.2"
id("org.jlleitschuh.gradle.ktlint") version "11.6.0"
}

val githubUser: String by project
Expand Down Expand Up @@ -102,6 +103,12 @@ dependencies {
require("1.11.3")
}
}
implementation("org.apache.commons:commons-compress") {
because("org.apache.commons:commons-compress:1.22 -> https://www.cve.org/CVERecord?id=CVE-2012-2098")
version {
require("1.26.0")
}
}
}
implementation("io.confluent:kafka-schema-registry:${Versions.confluent}", excludeLog4j)
constraints {
Expand All @@ -111,6 +118,30 @@ dependencies {
require("20231013")
}
}
implementation("org.eclipse.jetty:jetty-server") {
because("io.confluent:kafka-schema-registry:${Versions.confluent} -> https://www.cve.org/CVERecord?id=CVE-2023-36478")
version {
require(Versions.jetty)
}
}
implementation("org.eclipse.jetty:jetty-xml") {
because("io.confluent:kafka-schema-registry:${Versions.confluent} -> https://www.cve.org/CVERecord?id=CVE-2023-36478")
version {
require(Versions.jetty)
}
}
implementation("org.eclipse.jetty:jetty-servlets") {
because("io.confluent:kafka-schema-registry:${Versions.confluent} -> https://www.cve.org/CVERecord?id=CVE-2023-36478")
version {
require(Versions.jetty)
}
}
implementation("org.eclipse.jetty.http2:http2-server") {
because("io.confluent:kafka-schema-registry:${Versions.confluent} -> https://www.cve.org/CVERecord?id=CVE-2023-36478")
version {
require(Versions.jetty)
}
}
}
implementation("no.nav.syfo.dialogmote.avro:isdialogmote-schema:${Versions.isdialogmoteSchema}")

Expand Down

0 comments on commit 6f8b8f6

Please sign in to comment.