我正在用java和jda制作一个discord bot,我想尝试托管它。我发现构建intellij项目的最佳方法是使用maven。如果我跑了 mvn install
我得到以下错误。
> java: package net.dv8tion.jda.api does not exist
我搜索了stack overflow并认为我需要添加一个依赖项,但是因为这是我第一次使用java,所以我实在找不到如何在我的项目中实现它。有谁能告诉我如何解决这个问题以及如何实施它?
这是我的pom文件。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<groupId>bananaaction</groupId>
<artifactId>DiscordBot</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>4.2.0_222</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId> <!-- In Red -->
<configuration>
<archive>
<manifest>
<mainClass>com.bananaaction.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
1条答案
按热度按时间5us2dqdw1#
正如您所猜测的,问题是您没有将jda作为依赖项(库)包含在内。
为此,将此添加到
pom.xml
:有关详细信息,请参阅jda自述文件。
第一节(
<dependencies>
)声明依赖项(库)。在这里,您添加了一个具有组id的依赖项
net.dv8tion
和工件idJDA
带版本4.2.0_222
(本文撰写时的最新版本(2020年5月2日)。第二节(
<repositories>
)定义要查找的位置。jda不在maven central(默认)存储库中,而是在jcenter存储库中,因此您需要将jcenter存储库添加到pom.xml
.如果将其打包到jar中,则不包括依赖项。为此,可以使用
maven-assembly-plugin
,例如。您可以将插件添加到
pom.xml
在<plugins>
第二部分:集成在您的
pom.xml
,可能是这样的:但是,不要忘记更改主类。