Skip to content

Commit

Permalink
putter versjoner i vals
Browse files Browse the repository at this point in the history
gjør det enkelt å gjøre search & replace senere
  • Loading branch information
davidsteinsland committed Nov 15, 2024
1 parent 6b0451a commit 5815167
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions backend/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import java.nio.file.Paths

val logbackClassicVersion = "1.5.12"
val logbackEncoderVersion = "8.0"
val junitJupiterVersion = "5.11.3"
val ktorVersion = "3.0.1"
val tbdLibsVersion = "2024.11.15-09.09-08ca346b"
Expand Down Expand Up @@ -50,8 +52,8 @@ dependencies {
implementation("com.papertrailapp:logback-syslog4j:1.0.0")
implementation("com.natpryce:konfig:1.6.10.0")

implementation("ch.qos.logback:logback-classic:1.5.12")
implementation("net.logstash.logback:logstash-logback-encoder:8.0") {
implementation("ch.qos.logback:logback-classic:$logbackClassicVersion")
implementation("net.logstash.logback:logstash-logback-encoder:$logbackEncoderVersion") {
exclude("com.fasterxml.jackson.core")
exclude("com.fasterxml.jackson.dataformat")
}
Expand Down
6 changes: 4 additions & 2 deletions filbackend/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import java.nio.file.Paths

val logbackClassicVersion = "1.5.12"
val logbackEncoderVersion = "8.0"
val ktorVersion = "3.0.1"

plugins {
Expand Down Expand Up @@ -27,8 +29,8 @@ dependencies {
implementation("io.ktor:ktor-server-core:$ktorVersion")
implementation("io.ktor:ktor-server-cio:$ktorVersion")
implementation("io.ktor:ktor-serialization-jackson:$ktorVersion")
implementation("ch.qos.logback:logback-classic:1.5.12")
implementation("net.logstash.logback:logstash-logback-encoder:8.0") {
implementation("ch.qos.logback:logback-classic:$logbackClassicVersion")
implementation("net.logstash.logback:logstash-logback-encoder:$logbackEncoderVersion") {
exclude("com.fasterxml.jackson.core")
exclude("com.fasterxml.jackson.dataformat")
}
Expand Down

0 comments on commit 5815167

Please sign in to comment.