mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-16 02:12:58 +08:00
15 lines
215 B
Kotlin
15 lines
215 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
|
|
project.version = "0.0.1"
|
|
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
compileOnly(project(":"))
|
|
}
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|