mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
* Switched to the project-level dependency everywhere * Introduced a new module intellij.platform.ml.logs to separate ml-api library usages from intellij.platform.ml and intellij.platform.ml.impl modules * The following models has been adapted to the latest ML API version: python imports ranking, fuzzy resolve, completion trigger model, jetenry inline prompt detection, jetenry fleet code classification Merge-request: IJ-MR-166415 Merged-by: Vladimir Fedorov <890readrid@gmail.com> (cherry picked from commit 9056efba5a5397a700daabb453ee1477cfaabdf3) GitOrigin-RevId: 7cfc63d35b55ac968d5a3b789d2ed5f29d4f12d6
24 lines
678 B
Python
24 lines
678 B
Python
### auto-generated section `build intellij.platform.ml` start
|
|
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
|
|
|
|
jvm_resources(
|
|
name = "ml_resources",
|
|
files = glob(["resources/**/*"]),
|
|
strip_prefix = "resources"
|
|
)
|
|
|
|
jvm_library(
|
|
name = "ml",
|
|
module_name = "intellij.platform.ml",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["src/**/*.kt", "src/**/*.java"], allow_empty = True),
|
|
deps = [
|
|
"@lib//:kotlin-stdlib",
|
|
"@lib//:kotlinx-coroutines-core",
|
|
"//platform/core-api:core",
|
|
"//platform/util",
|
|
"@lib//:jetbrains-annotations",
|
|
],
|
|
runtime_deps = [":ml_resources"]
|
|
)
|
|
### auto-generated section `build intellij.platform.ml` end |