feat(android): import private Shopee probe tasks
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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()
|
||||
}
|
||||
Reference in New Issue
Block a user