26 lines
378 B
Kotlin
26 lines
378 B
Kotlin
plugins {
|
|
id("org.jetbrains.kotlin.jvm")
|
|
application
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":task-contract"))
|
|
testImplementation("junit:junit:4.13.2")
|
|
}
|
|
|
|
application {
|
|
mainClass.set("com.roubao.tools.shopee.MainKt")
|
|
}
|
|
|
|
tasks.named<JavaExec>("run") {
|
|
workingDir(rootProject.projectDir)
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
}
|