mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-16 02:12:58 +08:00
18 lines
345 B
Kotlin
18 lines
345 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
|
|
project.version = "0.0.1"
|
|
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
testImplementation(project(":"))
|
|
implementation(files("${project.projectDir}/libs/trilead-ssh2-build217-jenkins-8.jar"))
|
|
compileOnly(project(":"))
|
|
}
|
|
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|