Skip to content

Commit b24697b

Browse files
authored
build(deps): pin lsp4intellij to version 0.95.0 (#106)
version 0.95.1 broke diagnostics for opening files. Signed-off-by: Tomer Figenblat <[email protected]>
1 parent b7f6a53 commit b24697b

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,16 @@ publishPlugin {
3636
}
3737

3838
dependencies {
39-
implementation 'com.github.ballerina-platform:lsp4intellij:master-SNAPSHOT'
39+
// WATCH OUT - lsp4intellij version 0.95.1 breaks diagnostics for opened files
40+
implementation 'com.github.ballerina-platform:lsp4intellij:0.95.0'
41+
constraints {
42+
implementation('com.google.guava:guava:30.0-jre') {
43+
because 'version 27.1-jre introduced by lsp4intellij:0.95.0 reports vulnerabilities'
44+
}
45+
implementation('com.google.code.gson:gson:2.8.9') {
46+
because 'version 2.8.2 introduced by lsp4intellij:0.95.0 reports vulnerabilities'
47+
}
48+
}
4049
implementation 'org.kohsuke:github-api:1.314'
4150
implementation 'org.apache.commons:commons-compress:1.21'
4251
testImplementation('junit:junit:4.13.1')

0 commit comments

Comments
 (0)