Add ML completion jar to the resulting plugin jar

- Without it, ML completion jar will not be present in the runtime, causing errors when ML completion is enabled
- This step should have been done in 28ec74648e commit
This commit is contained in:
Roman Golyshev
2019-12-16 14:28:43 +03:00
committed by Roman Golyshev
parent e92985458b
commit 8e53ccb852
+4
View File
@@ -142,6 +142,10 @@ dependencies {
libraries(kotlinStdlib("jdk8"))
Platform[193].orHigher {
libraries(commonDep("org.jetbrains.intellij.deps.completion", "completion-ranking-kotlin"))
}
libraryProjects.forEach {
libraries(project(it)) { isTransitive = false }
}