forked from facebook/fresco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-bintray.gradle
35 lines (29 loc) · 1.07 KB
/
release-bintray.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
apply plugin: 'com.android.library'
// Set up everything required for releasing on Bintray
ext {
bintrayRepo = 'maven'
bintrayUserOrg = 'facebook'
bintrayName = "${GROUP}:${POM_ARTIFACT_ID}"
bintrayDescription = POM_DESCRIPTION
projectUrl = 'https://github.com/facebook/fresco'
issuesUrl = 'https://github.com/facebook/fresco/issues'
scmUrl = 'https://github.com/facebook/fresco.git'
scmConnection = 'scm:git:https://github.com/facebook/fresco.git'
scmDeveloperConnection = 'scm:git:[email protected]:facebook/fresco.git'
publishedGroupId = GROUP
libraryName = 'fresco'
artifact = 'fresco'
developerId = 'facebook'
developerName = 'Facebook'
projectLicenses = {
license {
name 'BSD License'
url 'https://github.com/facebook/fresco/blob/master/LICENSE'
distribution 'repo'
}
}
}
// Set up the Android Maven publication (POM etc.)
apply from: rootProject.file('gradle/android-maven-install.gradle')
// Upload to Bintray
apply from: rootProject.file('gradle/bintray.gradle')