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>
This commit is contained in:
Harsh Shandilya 2021-10-28 01:49:02 +05:30
parent 836c367499
commit 6da1d5ed01
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80

View File

@ -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"
}