forked from nullgr/app-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-bintray.gradle
More file actions
32 lines (24 loc) · 891 Bytes
/
release-bintray.gradle
File metadata and controls
32 lines (24 loc) · 891 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
// Bintray release configuration
ext {
bintrayRepo = 'maven'
bintrayName = POM_BINTRAY_NAME
publishedGroupId = 'com.nullgr.core'
libraryName = 'core'
artifact = POM_ARTIFACT_ID
packagingType = POM_PACKAGING
libraryDescription = POM_DESCRIPTION
siteUrl = 'https://github.com/nullgr/app-core'
issueUrl = 'https://github.com/nullgr/app-core/issues'
gitUrl = 'https://github.com/nullgr/app-core.git'
libraryVersion = '2.0.1-beta.2'
developerId = 'nullgr-dev'
developerName = 'Nullgravity Developer'
developerEmail = 'dev@nullgr.com'
licenseName = 'MIT'
licenseUrl = 'https://opensource.org/licenses/mit-license.php'
allLicenses = ["MIT"]
}
// Set up the Android Maven publication.
apply from: rootProject.file('jcenter/maven-install.gradle')
// Publish on Bintray.
apply from: rootProject.file('jcenter/bintray.gradle')