forked from microsoft/appcenter-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.gradle
32 lines (25 loc) · 962 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
28
29
30
31
32
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
// 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'
}