forked from microsoft/appcenter-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
34 lines (27 loc) · 1.09 KB
/
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
33
34
/*
* 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())
}
mavenUser = properties.getProperty("maven.user")
mavenKey = properties.getProperty("maven.key")
mavenRepoUrl = properties.getProperty("maven.repoUrl")
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]'
}