【发布时间】:2021-12-04 16:07:33
【问题描述】:
我正在尝试在我的 build.gradle 中添加下面的 dep 并添加了下面的 repos,但它仍然无法下载 dep。
repositories {
maven {
url 'http://packages.confluent.io/maven/'
}
maven {
url "https://repository.mulesoft.org/nexus/content/repositories/public/"
}
maven { url 'https://jitpack.io' }
jcenter()
mavenCentral()
mavenLocal()
}
以下是我得到的错误:
> Could not find com.github.everit-org.json-schema:org.everit.json.schema:.
Required by:
project :<my-project-module-name>
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
【问题讨论】:
标签: gradle build.gradle