-
Notifications
You must be signed in to change notification settings - Fork 9
/
metadata.gradle
24 lines (21 loc) · 912 Bytes
/
metadata.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
ext {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
verMajor = 1
verMinor = 0
verPatch = 5
bintray = [
artifactId : 'floatingedittext',
uploadName : 'FloatingEditText',
publishVersion: "${verMajor}.${verMinor}.${verPatch}",
repoName : 'maven',
groupId : 'com.rafakob',
desc : 'TextInputLayout and TextInputEditText merged into one class',
website : 'https://github.com/rafakob/FloatingEditText',
repository : 'https://github.com/rafakob/FloatingEditText',
licences : ['Apache-2.0'],
dryRun : false,
user : properties.getProperty('bintray.user'),
key : properties.getProperty('bintray.key')
]
}