forked from microsoft/appcenter-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
27 lines (21 loc) · 858 Bytes
/
publish.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
// Bintray constants
ext {
siteUrl = 'https://github.com/Microsoft/AppCenter-SDK-Android'
gitUrl = 'https://github.com/Microsoft/AppCenter-SDK-Android.git'
groupId = 'com.microsoft.appcenter'
Properties properties = new Properties()
File file = rootProject.file('local.properties')
if (file.exists()) {
properties.load(file.newDataInputStream())
}
bintrayUser = properties.getProperty("bintray.user")
bintrayKey = properties.getProperty("bintray.key")
bintrayUserOrg = properties.getProperty("bintray.user.org")
bintrayRepo = properties.getProperty("bintray.repo")
licenseName = 'The MIT License (MIT)'
licenseSite = 'https://opensource.org/licenses/MIT'
licenseCode = 'MIT'
developerId = 'microsoft'
developerName = 'Microsoft'
developerEmail = 'appcentersdk@microsoft.com'
}