-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrelease-bintray.gradle
More file actions
34 lines (27 loc) · 857 Bytes
/
release-bintray.gradle
File metadata and controls
34 lines (27 loc) · 857 Bytes
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
/**
* Bintray release configuration
* */
ext {
bintrayRepo = 'maven'
bintrayName = POM_ARTIFACT_ID
publishedGroupId = POM_GROUP
libraryName = POM_NAME
artifact = POM_ARTIFACT_ID
packagingType = POM_PACKAGING
libraryDescription = POM_NAME
siteUrl = POM_URL
gitUrl = POM_SCM_CONNECTION
trackerUrl = POM_SCM_TRACKER_URL
githubRepoUrl = POM_SCM_REPO
libraryVersion = VERSION_NAME
developerId = POM_DEVELOPER_ID
developerName = POM_DEVELOPER_NAME
developerEmail = POM_DEVELOPER_MAIL
licenseName = 'Apache-2.0'
licenseUrl = 'https://github.com/Sefford/kor/master/LICENSE'
allLicenses = ['Apache-2.0']
}
// Set up the Android Maven publication.
apply from: rootProject.file('jcenter/maven-install.gradle')
// Publish on Bintray.
apply from: rootProject.file('jcenter/bintray.gradle')