英文:
Why does this maven JDA dependency version not work?
问题
我正在尝试第一次制作 Discord 机器人,但遇到了一个问题。
当我尝试导入 JDA(https://github.com/DV8FromTheWorld/JDA)时,版本号被标记为红色。
当我使用稍旧的版本时,似乎也无法导入任何内容。
<dependencies>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.2.0_204</version>
</dependency>
</dependencies>
图片显示了一个可工作的版本。
英文:
I am trying to make a discord bot for the first time and have run into a problem.
When I'm trying to import JDA(https://github.com/DV8FromTheWorld/JDA) it underlines the version red.
When I use a slightly older version I also can't seem to import anything.
<dependencies>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.2.0_204</version>
</dependency>
</dependencies>
Image is with a working version
答案1
得分: 1
你是否已经添加了:
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
在你的 POM 文件中?你正在使用的发布版本并未在 Maven Central 上出现。请参考此指南中的安装说明。
英文:
Have you added:
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
repository in you POM? The release version you are using is not present on Maven Central. Please refer this guide with installation instruction.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论