28 lines
531 B
Groovy
28 lines
531 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.jetbrains.intellij.platform' version '2.2.1'
|
|
|
|
}
|
|
|
|
group = 'org.example'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
|
|
intellijPlatform {
|
|
defaultRepositories()
|
|
}
|
|
}
|
|
|
|
|
|
dependencies {
|
|
testImplementation platform('org.junit:junit-bom:5.10.0')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
implementation "com.github.Ballerina-Platform.lsp4intellij:lsp4intellij:master-SNAPSHOT"
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |