无法解析:org.jetbrains.pty4j:pty4j:0.9.8

  • 本文关键字:pty4j jetbrains org gradle pty
  • 更新时间 :
  • 英文 :


In mybuild.gradle文件。

repositories {
maven {
url  "https://jetbrains.bintray.com/pty4j"
}
mavenCentral()
}
dependencies {
implementation group: 'org.jetbrains.pty4j', name: 'pty4j', version: '0.9.8'
}

如果我创建我的项目它是这样的

Could not resolve org.jetbrains.pty4j:pty4j:0.9.8.
Possible solution:
- Declare repository providing the artifact, see the documentation at 
https://docs.gradle.org/current/userguide/declaring_repositories.html

屏幕截图如何解决这个错误?

这个特定的工件不是由MavenCentral()提供的,而是由Spring Release Repository提供的。要找出哪个存储库提供了给定的工件,一个有用的技巧是在这里查找您的工件,并注意存储库链接提供。

你需要把Gradle的配置改成这样:

repositories {
mavenCentral()
maven { url "https://packages.jetbrains.team/maven/p/ij/intellij-dependencies" }
}

相关内容

  • 没有找到相关文章

最新更新