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