diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-10-28 01:49:02 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-10-28 03:19:55 +0530 |
commit | 6da1d5ed0198bfe6c93febe279b9b0f766bbcd99 (patch) | |
tree | d07d814e4786c667726186da8e3152e3cdf66797 /tunnel/build.gradle | |
parent | 836c367499180832db533b5179a56bd8480b1385 (diff) |
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 <me@msfjarvis.dev>
Diffstat (limited to 'tunnel/build.gradle')
-rw-r--r-- | tunnel/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
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" } |