From 72e44a2a16054df85b867dedbbb27eefbf952335 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Thu, 19 Sep 2024 04:10:10 -0700 Subject: [PATCH] Fix CI broken for host.gradle (#99) Summary: ## Motivation CI is currently broken, this fixes it. Pull Request resolved: https://github.com/facebookincubator/fbjni/pull/99 Test Plan: CI is green now Reviewed By: passy Differential Revision: D63022694 Pulled By: cortinico fbshipit-source-id: 68a78cfb0d7fae8be823edafe40e8a82fe29b166 --- host.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host.gradle b/host.gradle index baaf164..ad82f6a 100644 --- a/host.gradle +++ b/host.gradle @@ -34,8 +34,8 @@ sourceSets { } dependencies { - compileOnly 'com.google.code.findbugs:jsr305:3.0.2' implementation 'com.facebook.soloader:nativeloader:0.10.5' + implementation 'com.google.code.findbugs:jsr305:3.0.2' testImplementation 'junit:junit:4.13.2' testImplementation 'org.assertj:assertj-core:2.9.0' testImplementation 'org.mockito:mockito-core:2.28.2'