mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 09:12:22 +07:00
24 lines
686 B
Python
24 lines
686 B
Python
load("@rules_kotlin//kotlin:jvm.bzl", "kt_jvm_library")
|
|
load("@community//:build/compiler-options.bzl", "create_kotlinc_options")
|
|
|
|
create_kotlinc_options(
|
|
name = "custom",
|
|
jvm_target = "17",
|
|
x_optin = ["kotlin.ExperimentalStdlibApi"]
|
|
)
|
|
|
|
kt_jvm_library(
|
|
name = "fleet.rhizomedb",
|
|
visibility = ["//visibility:public"],
|
|
srcs = glob(["src/main/kotlin/**/*.kt", "src/main/kotlin/**/*.java"]),
|
|
javac_opts = "//:j17",
|
|
kotlinc_opts = ":custom",
|
|
deps = [
|
|
"@community//fleet/util/core:fleet.util.core",
|
|
"@libraries//:kotlin-stdlib",
|
|
"@libraries//:kotlin-reflect",
|
|
"@libraries//:intellij-deps-fastutil",
|
|
"@libraries//:kotlinx-collections-immutable-jvm"
|
|
]
|
|
)
|