mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 06:59:44 +07:00
19 lines
542 B
Python
19 lines
542 B
Python
load("@rules_kotlin//kotlin:jvm.bzl", "kt_jvm_library")
|
|
|
|
kt_jvm_library(
|
|
visibility = ["//visibility:public"],
|
|
name = "intellij.platform.statistics.config",
|
|
srcs = glob(['src/**/*.kt', 'src/**/*.java']),
|
|
javac_opts = "//:j17",
|
|
kotlinc_opts = "//:k17",
|
|
plugins = ["@libraries//:serialization_plugin"],
|
|
deps = [
|
|
"@libraries//:annotations",
|
|
"@libraries//:kotlin-stdlib",
|
|
"@libraries//:kotlin-reflect",
|
|
"@libraries//:jackson-core",
|
|
"@libraries//:jackson-databind",
|
|
"@libraries//:jackson-module-kotlin"
|
|
]
|
|
)
|