-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (32 loc) · 961 Bytes
/
build.gradle
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
plugins {
id 'com.gradleup.shadow' version '8.3.5'
id 'application'
id 'antlr'
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
repositories {
mavenCentral()
}
dependencies {
antlr 'org.antlr:antlr4:4.9.2'
implementation 'com.google.guava:guava:33.3.1-jre'
implementation 'org.apache.groovy:groovy:4.0.24'
implementation 'org.apache.groovy:groovy-json:4.0.24'
implementation 'org.codehaus.gpars:gpars:1.2.1'
implementation 'org.eclipse.lsp4j:org.eclipse.lsp4j:0.23.0'
implementation 'org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:0.23.0'
testImplementation ("net.bytebuddy:byte-buddy:1.14.17")
testImplementation ("org.spockframework:spock-core:2.3-groovy-4.0") { exclude group: 'org.apache.groovy' }
}
generateGrammarSource {
arguments += ['-no-listener', '-no-visitor']
}
application {
mainClass = 'nextflow.lsp.NextflowLanguageServer'
}
test {
useJUnitPlatform()
}