29 lines
580 B
Plaintext
29 lines
580 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
group = "dev.usbharu"
|
||
|
version = "0.0.1"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(rootProject)
|
||
|
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
||
|
implementation("io.grpc:grpc-protobuf:1.61.1")
|
||
|
implementation("com.google.protobuf:protobuf-kotlin:3.25.3")
|
||
|
implementation("io.grpc:grpc-netty:1.61.1")
|
||
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0")
|
||
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(11)
|
||
|
}
|
||
|
|