mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-15 18:02:58 +08:00
Bumps [com.fazecast:jSerialComm](https://github.com/Fazecast/jSerialComm) from 2.11.2 to 2.11.4. - [Release notes](https://github.com/Fazecast/jSerialComm/releases) - [Commits](https://github.com/Fazecast/jSerialComm/commits) --- updated-dependencies: - dependency-name: com.fazecast:jSerialComm dependency-version: 2.11.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
271 B
Kotlin
18 lines
271 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
|
|
|
|
project.version = "0.0.5"
|
|
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
compileOnly(project(":"))
|
|
implementation("com.fazecast:jSerialComm:2.11.4")
|
|
}
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|
|
|