From fc184812f63341ca19b5c5ffd7716ac2d94d4ec7 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Wed, 27 Jun 2018 08:03:25 -0700 Subject: [PATCH] Update Litho dependencies (#112) Summary: There's been a new stable release and we no longer need to depend on the snapshot releases. Closes https://github.com/facebook/Sonar/pull/112 Reviewed By: danielbuechele Differential Revision: D8659035 Pulled By: passy fbshipit-source-id: 83763e521ffd53e031664e3b1d2714df769d1557 --- build.gradle | 13 ++++++------- libs/fbjni/build.gradle | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/build.gradle b/build.gradle index 9f4da8f50..2dea53a9b 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,6 @@ subprojects { mavenLocal() mavenCentral() jcenter() - maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } } } @@ -52,12 +51,12 @@ ext.deps = [ jsr305 : 'com.google.code.findbugs:jsr305:3.0.1', inferAnnotations : 'com.facebook.infer.annotation:infer-annotation:0.11.2', // Litho - lithoAnnotations : 'com.facebook.litho:litho-annotations:0.15.1-SNAPSHOT', - lithoCore : 'com.facebook.litho:litho-core:0.15.1-SNAPSHOT', - lithoWidget : 'com.facebook.litho:litho-widget:0.15.1-SNAPSHOT', - lithoProcessor : 'com.facebook.litho:litho-processor:0.15.1-SNAPSHOT', - lithoFresco : 'com.facebook.litho:litho-fresco:0.15.1-SNAPSHOT', - lithoTesting : 'com.facebook.litho:litho-testing:0.15.1-SNAPSHOT', + lithoAnnotations : 'com.facebook.litho:litho-annotations:0.16.0', + lithoCore : 'com.facebook.litho:litho-core:0.16.0', + lithoWidget : 'com.facebook.litho:litho-widget:0.16.0', + lithoProcessor : 'com.facebook.litho:litho-processor:0.16.0', + lithoFresco : 'com.facebook.litho:litho-fresco:0.16.0', + lithoTesting : 'com.facebook.litho:litho-testing:0.16.0', // Debugging and testing guava : 'com.google.guava:guava:20.0', robolectric : 'org.robolectric:robolectric:3.0', diff --git a/libs/fbjni/build.gradle b/libs/fbjni/build.gradle index 662b90ef9..fcfe6149f 100644 --- a/libs/fbjni/build.gradle +++ b/libs/fbjni/build.gradle @@ -36,6 +36,6 @@ dependencies { // compileOnly dependencies compileOnly deps.jsr305 compileOnly deps.inferAnnotations - compileOnly 'com.facebook.litho:litho-annotations:0.15.0' + compileOnly deps.lithoAnnotations implementation deps.soloader }