[bazel] Update build files (IJI-3062)

GitOrigin-RevId: 98a67396a48bddc3d084cc93c50ae2f2017bfe8c
This commit is contained in:
Ilia Kirianovskii
2025-09-29 00:11:15 +00:00
committed by intellij-monorepo-bot
parent c1a45b2a46
commit f43aa95086
805 changed files with 4258 additions and 4404 deletions
+5 -5
View File
@@ -1,9 +1,9 @@
### auto-generated section `build intellij.java.codeserver.core` start
load("@rules_jvm//:jvm.bzl", "jvm_library", "jvm_resources")
load("@rules_jvm//:jvm.bzl", "jvm_library", "resourcegroup")
jvm_resources(
resourcegroup(
name = "core_resources",
files = glob(["resources/**/*"]),
srcs = glob(["resources/**/*"]),
strip_prefix = "resources"
)
@@ -12,6 +12,7 @@ jvm_library(
module_name = "intellij.java.codeserver.core",
visibility = ["//visibility:public"],
srcs = glob(["src/**/*.kt", "src/**/*.java", "src/**/*.form"], allow_empty = True),
resources = [":core_resources"],
deps = [
"@lib//:jetbrains-annotations",
"@lib//:stream_ex",
@@ -27,7 +28,6 @@ jvm_library(
"//java/java-psi-impl:psi-impl",
"//platform/workspace/storage",
"//java/java-indexing-api:indexing",
],
runtime_deps = [":core_resources"]
]
)
### auto-generated section `build intellij.java.codeserver.core` end