gpt4 book ai didi

android - build.gradle 文件构建有问题,未解决 'No such property error'

转载 作者:行者123 更新时间:2023-12-03 06:07:15 26 4
gpt4 key购买 nike

这是我的 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)
}
}
}

错误:错误:(18、0)没有这样的属性:类的 Artifact 用户名:org.gradle.api.publication.maven.internal.deployer.DefaultGroovyMavenDeployer

指向第 18 行。有谁知道发生了什么?

最佳答案

正如您在错误消息中看到的,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")
}
}
}

您可以查看示例 here .

关于android - build.gradle 文件构建有问题,未解决 'No such property error',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37780758/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com