-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
28 lines (22 loc) · 1.3 KB
/
BUILD.bazel
File metadata and controls
28 lines (22 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
load("@gazelle//:def.bzl", "gazelle")
load("//:kotlin.bzl", "setup_kotlin_compiler", "setup_spring_allopen_plugin")
package(default_visibility = ["//visibility:public"])
setup_kotlin_compiler()
setup_spring_allopen_plugin()
gazelle(name = "gazelle")
gazelle(
name = "gazelle-update-repos",
args = ["-from_file=go.mod", "-to_macro=deps.bzl%go_dependencies", "-prune"],
command = "update-repos",
)
alias(name = "admission", actual = "//systems/admission/admission-bootstrap:main")
alias(name = "application", actual = "//systems/application/application-bootstrap:main")
alias(name = "configuration", actual = "//systems/configuration/configuration-bootstrap:main")
alias(name = "document", actual = "//systems/document/document-bootstrap:main")
alias(name = "gateway", actual = "//systems/gateway/gateway-bootstrap:main")
alias(name = "identity", actual = "//systems/identity/identity-bootstrap:main")
alias(name = "notification", actual = "//systems/notification/notification-bootstrap:main")
alias(name = "schedule", actual = "//systems/schedule/schedule-bootstrap:main")
alias(name = "analytics", actual = "//systems/analytics/cmd/server:server")
alias(name = "evaluation", actual = "//systems/evaluation/cmd/server:server")
alias(name = "observability", actual = "//systems/observability/cmd/server:server")