Files
termora/plugins/editor/build.gradle.kts
2025-08-07 16:44:31 +08:00

20 lines
385 B
Kotlin

plugins {
alias(libs.plugins.kotlin.jvm)
}
project.version = "0.0.7"
dependencies {
testImplementation(kotlin("test"))
compileOnly(project(":"))
implementation("com.fifesoft:rsyntaxtextarea:3.6.0")
implementation("com.fifesoft:languagesupport:3.4.0")
implementation("com.fifesoft:autocomplete:3.3.2")
}
apply(from = "$rootDir/plugins/common.gradle.kts")