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")
}