mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-16 02:12:58 +08:00
Bumps [com.fifesoft:languagesupport](https://github.com/bobbylight/RSTALanguageSupport) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/bobbylight/RSTALanguageSupport/releases) - [Commits](https://github.com/bobbylight/RSTALanguageSupport/compare/3.3.0...3.4.0) --- updated-dependencies: - dependency-name: com.fifesoft:languagesupport dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
385 B
Kotlin
20 lines
385 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
|
|
|
|
project.version = "0.0.3"
|
|
|
|
|
|
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")
|
|
|