-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathBUILD.bazel
More file actions
41 lines (34 loc) · 1003 Bytes
/
BUILD.bazel
File metadata and controls
41 lines (34 loc) · 1003 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
load("@rules_java//java:defs.bzl", "java_library")
package(
default_applicable_licenses = ["//:license"],
default_visibility = ["//visibility:public"],
)
java_library(
name = "cel",
exports = [
"//bundle/src/main/java/dev/cel/bundle:cel",
"//bundle/src/main/java/dev/cel/bundle:cel_factory",
],
)
java_library(
name = "environment",
exports = ["//bundle/src/main/java/dev/cel/bundle:environment"],
)
java_library(
name = "environment_exception",
exports = ["//bundle/src/main/java/dev/cel/bundle:environment_exception"],
)
java_library(
name = "environment_yaml_parser",
exports = ["//bundle/src/main/java/dev/cel/bundle:environment_yaml_parser"],
)
java_library(
name = "environment_exporter",
exports = ["//bundle/src/main/java/dev/cel/bundle:environment_exporter"],
)
java_library(
name = "cel_impl",
testonly = 1,
visibility = ["//:internal"],
exports = ["//bundle/src/main/java/dev/cel/bundle:cel_impl"],
)