27 lines
622 B
Plaintext
27 lines
622 B
Plaintext
plugins {
|
|
kotlin("jvm") version "2.0.10"
|
|
kotlin("plugin.serialization") version "2.0.20"
|
|
}
|
|
|
|
group = "net.ipks"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.oracle.database.jdbc:ojdbc8:21.1.0.0")
|
|
implementation("com.squareup.okhttp3:okhttp:4.12.0")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1")
|
|
implementation("redis.clients:jedis:5.1.2")
|
|
implementation("org.slf4j:slf4j-api:2.0.16")
|
|
implementation("ch.qos.logback:logback-classic:1.3.14")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(8)
|
|
} |