18 lines
212 B
Kotlin
18 lines
212 B
Kotlin
plugins {
|
|
id("java")
|
|
}
|
|
|
|
group = "me.trouper"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.github.mwiede:jsch:2.27.0")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
} |