Get rid of IDE message complaining about underscores in ktor version variable
This commit is contained in:
+5
-5
@@ -6,7 +6,7 @@ plugins {
|
|||||||
|
|
||||||
group = "com.shr4pnel"
|
group = "com.shr4pnel"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
val ktor_version = "3.5.2"
|
val ktorVersion = "3.5.2"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
@@ -14,10 +14,10 @@ repositories {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(kotlin("test"))
|
testImplementation(kotlin("test"))
|
||||||
implementation ("io.ktor:ktor-client-core:${ktor_version}")
|
implementation ("io.ktor:ktor-client-core:${ktorVersion}")
|
||||||
implementation("io.ktor:ktor-client-cio:${ktor_version}")
|
implementation("io.ktor:ktor-client-cio:${ktorVersion}")
|
||||||
implementation("io.ktor:ktor-network:${ktor_version}")
|
implementation("io.ktor:ktor-network:${ktorVersion}")
|
||||||
implementation("io.ktor:ktor-network-tls:${ktor_version}")
|
implementation("io.ktor:ktor-network-tls:${ktorVersion}")
|
||||||
implementation("io.github.oshai:kotlin-logging-jvm:8.0.4")
|
implementation("io.github.oshai:kotlin-logging-jvm:8.0.4")
|
||||||
implementation("ch.qos.logback:logback-classic:1.6.1")
|
implementation("ch.qos.logback:logback-classic:1.6.1")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user