作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 api 模块的 build.gradle 文件的内容。它正在解决下面提到的错误。
version "1.1.0"
apply plugin: 'java'
apply plugin: 'maven'
// Android support
sourceCompatibility = JavaVersion.VERSION_1_7
dependencies {
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-core:2.0.3-beta'
}
uploadArchives {
repositories.mavenDeployer {
repository(url: "http://orchard.internal.mohc.net:8081/artifactory/libs-${version.endsWith("SNAPSHOT") ? "snapshot" : "release"}-local") {
authentication(userName: artifactoryUsername, password: artifactoryPassword)
}
}
}
最佳答案
正如您在错误消息中看到的,Gradle 正在尝试查找属性 artifactoryUsername,这实际上是该属性的值。用户名和密码使用双引号。
uploadArchives {
repositories.mavenDeployer {
repository(url: "http://orchard.internal.mohc.net:8081/artifactory/libs-${version.endsWith("SNAPSHOT") ? "snapshot" : "release"}-local") {
authentication(userName: "artifactoryUsername", password: "artifactoryPassword")
}
}
}
关于android - build.gradle 文件构建有问题,未解决 'No such property error',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37780758/
我是一名优秀的程序员,十分优秀!