forked from HujiangTechnology/gradle_plugin_android_aspectjx
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext.gradle
More file actions
20 lines (19 loc) · 783 Bytes
/
ext.gradle
File metadata and controls
20 lines (19 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
project.ext {
aspectjVersion = '1.9.5'
Properties properties = new Properties()
if (project.file('local.properties').exists()) {
properties.load(project.file('local.properties').newDataInputStream())
}
def nRelease = 'nexus.releases'
def nSnapshot = 'nexus.snapshots'
def nUserName = 'nexus.username'
def nPassword = 'nexus.password'
def bUser = 'bintray.user'
def bAPIKey = 'bintray.apikey'
nexusReleases = properties.getProperty(nRelease, "")
nexusSnapshots = properties.getProperty(nSnapshot, "")
nexusUserName = properties.getProperty(nUserName, "")
nexusPassword = properties.getProperty(nPassword, "")
bintrayUser = properties.getProperty(bUser, "")
bintrayAPIKey = properties.getProperty(bAPIKey, "")
}