为什么这个 Maven JDA 依赖版本不起作用?

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>

图像是工作版本

你有没有添加:

<repository>
    <id>jcenter</id>
    <name>jcenter-bintray</name>
    <url>https://jcenter.bintray.com</url>
</repository>

您的 POM 中的存储库? Maven Central 上不存在您使用的发行版本。安装说明请参考this guide