41 lines
715 B
Plaintext
41 lines
715 B
Plaintext
plugins {
|
|
id("org.jetbrains.intellij") version "1.17.3"
|
|
kotlin("jvm") version "1.9.0"
|
|
}
|
|
|
|
group = "com.example"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib"))
|
|
implementation("com.github.ballerina-platform:lsp4intellij:0.9.0")
|
|
}
|
|
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
|
|
intellij {
|
|
version.set("2023.3")
|
|
}
|
|
|
|
tasks {
|
|
patchPluginXml {
|
|
sinceBuild.set("233")
|
|
untilBuild.set("233.*")
|
|
}
|
|
} |