refactor(connector): make version numbers into variables

This commit is contained in:
Anthony 2024-04-05 12:38:45 +02:00
parent 99ad92dbf9
commit 9c5e535e5b
2 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,9 @@ plugins {
application
}
val sl4jVersion = "2.0.12"
val vdmjVersion = "4.5.0"
group = "io.anthonyberg.connector"
version = "1.0.0"
application {
@ -19,5 +22,5 @@ dependencies {
testImplementation(libs.ktor.server.tests)
testImplementation(libs.kotlin.test.junit)
implementation("dk.au.ece.vdmj:vdmj:4.5.0")
implementation("dk.au.ece.vdmj:vdmj:$vdmjVersion")
}

View File

@ -27,7 +27,7 @@ kotlin {
implementation("app.cash.sqldelight:coroutines-extensions:$sqlDelightVersion")
implementation("org.jetbrains.kotlinx:kotlinx-datetime:$dateTimeVersion")
implementation("org.slf4j:slf4j-api:$sl4jVersion")
implementation("org.slf4j:slf4j-reload4j:2.0.12")
implementation("org.slf4j:slf4j-reload4j:$sl4jVersion")
}
commonTest.dependencies {
implementation(libs.kotlin.test)