aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tunnel
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2021-10-28 01:49:02 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2021-10-28 03:19:55 +0530
commit6da1d5ed0198bfe6c93febe279b9b0f766bbcd99 (patch)
treed07d814e4786c667726186da8e3152e3cdf66797 /tunnel
parentgradle: upgrade AndroidX dependencies (diff)
downloadwireguard-android-6da1d5ed0198bfe6c93febe279b9b0f766bbcd99.tar.xz
wireguard-android-6da1d5ed0198bfe6c93febe279b9b0f766bbcd99.zip
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')
-rw-r--r--tunnel/build.gradle2
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"
}