forked from pCloud/pcloud-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublishing.gradle
More file actions
31 lines (26 loc) · 935 Bytes
/
publishing.gradle
File metadata and controls
31 lines (26 loc) · 935 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
ext {
isCi = "true" == System.getenv('CI')
versionName = "1.5.0"
versionCode = 7
libraryName = "pcloud-sdk"
groupId = "com.pcloud.sdk"
description = "The official pCloud Java SDK for integration with pCloud's API"
siteUrl = 'https://github.com/pCloud/pcloud-sdk-java'
scmUrl = 'https://github.com/pCloud/pcloud-sdk-java.git'
developerId = 'android-pcloud'
developerName = 'pCloud AG'
developerEmail = 'android@pcloud.com'
developerUrl = 'https://www.pcloud.com'
licenseName = 'The Apache License v2.0'
licenseUrl = 'https://github.com/pCloud/pcloud-sdk-java/LICENSE'
allLicenses = ["Apache-2.0"]
}
ext.getPublishProperty = { String valueName ->
String value = null
if (project.ext.has(valueName)) {
value = project.ext.get(valueName)
} else if (rootProject.ext.has(valueName)) {
value = rootProject.ext.get(valueName)
}
return value
}