Skip to content

Commit aee51d5

Browse files
committed
Replace jcenter with mavenCentral
1 parent 9756618 commit aee51d5

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Litho [![GithubCI](https://github.com/facebook/litho/actions/workflows/ci.yml/badge.svg)](https://github.com/facebook/litho/actions/workflows/ci.yml) [![Bintray](https://img.shields.io/maven-metadata/v/https/jcenter.bintray.com/com/facebook/litho/litho-core/maven-metadata.xml.svg?color=orange&label=bintray)](https://bintray.com/facebook/maven/com.facebook.litho%3Alitho-core/_latestVersion) [![Join the chat at https://gitter.im/facebook/litho](https://badges.gitter.im/facebook/litho.svg)](https://gitter.im/facebook/litho?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/facebook/litho/blob/master/LICENSE)
1+
# Litho [![GithubCI](https://github.com/facebook/litho/actions/workflows/ci.yml/badge.svg)](https://github.com/facebook/litho/actions/workflows/ci.yml) [![Maven Central Version](https://img.shields.io/maven-central/v/com.facebook.litho/litho-core)](https://central.sonatype.com/artifact/com.facebook.litho/litho-core) [![Join the chat at https://gitter.im/facebook/litho](https://badges.gitter.im/facebook/litho.svg)](https://gitter.im/facebook/litho?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/facebook/litho/blob/master/LICENSE)
22

33
<img src="website/static/logo.png" width=150 align=right>
44

docs/getting-started.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ import VersionedCodeBlock from '@theme/VersionedCodeBlock';
2121

2222
## Adding Litho to your Project
2323

24-
We publish the Litho artifacts to Bintray's JCenter. To include Litho to your
25-
Android project, make sure you include the reference to the repository in your `build.gradle` file:
24+
We publish the Litho artifacts to Maven Central. To include Litho to your Android project,
25+
make sure you include the reference to the repository in your `build.gradle` file:
2626

2727
```groovy
2828
repositories {
29-
jcenter()
29+
mavenCentral()
3030
}
3131
```
3232
Then add the dependencies like this:
@@ -110,12 +110,12 @@ top of your application's `build.gradle` file:
110110
apply plugin: 'kotlin-kapt'
111111
```
112112

113-
We publish the Litho artifacts to Bintray's JCenter. To include Litho to your
114-
Android project, make sure you include the reference to the repository in your `build.gradle` file:
113+
We publish the Litho artifacts to Maven Central. To include Litho to your Android project,
114+
make sure you include the reference to the repository in your `build.gradle` file:
115115

116116
```groovy
117117
repositories {
118-
jcenter()
118+
mavenCentral()
119119
}
120120
```
121121

0 commit comments

Comments
 (0)