From 6da1d5ed0198bfe6c93febe279b9b0f766bbcd99 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Thu, 28 Oct 2021 01:49:02 +0530 Subject: tunnel: make JSR305 annotations a compileOnly dependency These have no business being part of the runtime classpath of this library Signed-off-by: Harsh Shandilya --- tunnel/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tunnel/build.gradle b/tunnel/build.gradle index b6183eae..398a5b9d 100644 --- a/tunnel/build.gradle +++ b/tunnel/build.gradle @@ -52,7 +52,7 @@ android { dependencies { implementation "androidx.annotation:annotation:$annotationsVersion" implementation "androidx.collection:collection:$collectionVersion" - implementation "com.google.code.findbugs:jsr305:$jsr305Version" + compileOnly "com.google.code.findbugs:jsr305:$jsr305Version" testImplementation "junit:junit:$junitVersion" } -- cgit v1.2.3