aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorFabian Meumertzheim <meumertzheim@code-intelligence.com>2021-06-25 10:27:36 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-06-25 11:25:04 +0200
commit4179c2f486339ca71a4eb979a81f92ea51bd5c9b (patch)
tree4f6ca29a981f0ed7986006b3ccf3bc4637315eb9 /examples
parent2f09830e39892080afe8a678acb496a5f0529b2c (diff)
downloadjazzer-api-4179c2f486339ca71a4eb979a81f92ea51bd5c9b.tar.gz
Consistently use neverlink jazzer_api dep
The Jazzer API should not be linked as it is provided by the agent at runtime. Enforce this by limiting the visibility of the runtime dep to //:__pkg__, where the _deploy.jar target is needed for Maven publication.
Diffstat (limited to 'examples')
-rw-r--r--examples/BUILD.bazel2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/BUILD.bazel b/examples/BUILD.bazel
index d7f0f8cd..08c93bd2 100644
--- a/examples/BUILD.bazel
+++ b/examples/BUILD.bazel
@@ -195,7 +195,7 @@ kt_jvm_library(
"src/main/java/com/example/KlaxonFuzzer.kt",
],
deps = [
- "//agent/src/main/java/com/code_intelligence/jazzer/api",
+ "//agent:jazzer_api_compile_only",
"@maven//:com_beust_klaxon",
],
)