-
Notifications
You must be signed in to change notification settings - Fork 131
/
publish.gradle
32 lines (25 loc) · 1000 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())
}
mavenKey = properties.getProperty("maven.key")
mavenSigningKeyId = properties.getProperty("maven.signingKeyId")
mavenPublicKeyPassword = properties.getProperty("maven.publicKeyPassword")
mavenSecretKeyPath = properties.getProperty("maven.secretKeyPath")
licenseName = 'The MIT License (MIT)'
licenseSite = 'https://opensource.org/licenses/MIT'
licenseCode = 'MIT'
developerId = 'microsoft'
developerName = 'Microsoft'
developerEmail = '[email protected]'
}