-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
43 lines (32 loc) · 863 Bytes
/
build.gradle.kts
File metadata and controls
43 lines (32 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
plugins {
id("java")
alias(libs.plugins.kotlin) // Kotlin support
alias(libs.plugins.intelliJPlatform) // IntelliJ Platform Gradle Plugin
alias(libs.plugins.testLogger)
}
group = "org.teamtype"
version = "0.9.0-SNAPSHOT"
repositories {
mavenCentral()
intellijPlatform { defaultRepositories() }
}
dependencies {
intellijPlatform {
intellijIdea("2025.3.1.1")
bundledPlugin("org.jetbrains.plugins.terminal")
testFramework(TestFrameworkType.Platform)
}
implementation(libs.lsp4j)
implementation(libs.lsp4jJsonrpc)
testImplementation(libs.junit)
testImplementation(libs.opentest4j)
}
kotlin { compilerOptions { jvmToolchain(21) } }
intellijPlatform {
pluginConfiguration {
ideaVersion {
sinceBuild = "234"
}
}
}