From 71c50a75eb50a575466192a263b8fc054d58bed7 Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Wed, 12 Aug 2026 10:25:15 -0700 Subject: [PATCH] Export JSpecify annotations at runtime (#1861) JSpecify annotations have runtime retention, so expose them through the API variant as recommended by JSpecify. --- api/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/build.gradle.kts b/api/build.gradle.kts index c8afb716..65a03a04 100644 --- a/api/build.gradle.kts +++ b/api/build.gradle.kts @@ -18,7 +18,7 @@ java { } dependencies { - compileOnlyApi(libs.jspecify) + api(libs.jspecify) api(libs.gson) api(libs.guava)