-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublish.gradle
More file actions
26 lines (21 loc) · 759 Bytes
/
publish.gradle
File metadata and controls
26 lines (21 loc) · 759 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
ext {
bintrayOrg = 'depoza'
bintrayRepo = 'util'
bintrayName = 'time-period'
developerId = 'depoza'
developerName = 'Depoza'
developerEmail = 'dev@depoza.com'
libraryName = 'TimePeriod'
libraryDescription = 'Set of simple classes for working with time periods.'
libraryGroupId = 'com.depoza.util'
libraryArtifact = 'time-period'
libraryVersion = '1.0.4'
urlSite = 'https://github.com/amagda/TimePeriod'
urlVcs = 'https://github.com/amagda/TimePeriod.git'
urlIssues = 'https://github.com/amagda/TimePeriod/issues'
licenseName = 'MIT'
licenseUrl = 'http://www.opensource.org/licenses/mit-license.php'
allLicenses = ["MIT"]
}
apply from: '../install.gradle'
apply from: '../bintray.gradle'