加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ext.gradle 783 Bytes
一键复制 编辑 原始数据 按行查看 历史
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, "")
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化