Summary: Reuse the gradle setup we've built for Litho which allows for parallel publishing to Bintray and Maven Central in addition to Sonatype Snapshots. This appears not to break the existing jcenter deploy script which is pretty great. Reviewed By: emilsjolander Differential Revision: D5020576 fbshipit-source-id: 3ef163ccbfe91c6858b051d39dcf237ca388e18d
9 lines
347 B
Groovy
9 lines
347 B
Groovy
// Common Android tasks for all releases that generate Javadocs, sources, etc.
|
|
apply from: rootProject.file('gradle/android-tasks.gradle')
|
|
|
|
// Upload to Bintray
|
|
apply from: rootProject.file('gradle/release-bintray.gradle')
|
|
|
|
// Upload directly to standard Maven Central (for SNAPSHOTs)
|
|
apply from: rootProject.file('gradle/gradle-mvn-push.gradle')
|