Skip to content

Commit

Permalink
tunnel: make JSR305 annotations a compileOnly dependency
Browse files Browse the repository at this point in the history
These have no business being part of the runtime classpath of this library

Signed-off-by: Harsh Shandilya <[email protected]>
  • Loading branch information
msfjarvis committed Oct 27, 2021
1 parent 836c367 commit 6da1d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tunnel/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down

0 comments on commit 6da1d5e

Please sign in to comment.