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
This commit is contained in:
Pascal Hartig
2018-06-27 08:03:25 -07:00
committed by Facebook Github Bot
parent 1060542f64
commit fc184812f6
2 changed files with 7 additions and 8 deletions

View File

@@ -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',

View File

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