37 lines
842 B
Plaintext
37 lines
842 B
Plaintext
plugins {
|
|
kotlin("jvm") version "2.1.0"
|
|
application
|
|
}
|
|
|
|
group = "net.lamgc.scext"
|
|
version = "0.1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
application {
|
|
mainClass = ""
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":onedrive-transfer-remote-common"))
|
|
|
|
implementation("org.slf4j:slf4j-api:2.0.11")
|
|
implementation("io.github.microutils:kotlin-logging:3.0.5")
|
|
implementation("ch.qos.logback:logback-classic:1.5.15")
|
|
|
|
implementation("com.github.ajalt.clikt:clikt:5.0.2")
|
|
implementation("com.github.ajalt.clikt:clikt-markdown:5.0.2")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect:2.1.0")
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|