maven java:包不存在

lndjwyie  于 2021-07-07  发布在  Java
关注(0)|答案(1)|浏览(465)

我正在用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>
5us2dqdw

5us2dqdw1#

正如您所猜测的,问题是您没有将jda作为依赖项(库)包含在内。
为此,将此添加到 pom.xml :

<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>

有关详细信息,请参阅jda自述文件。
第一节( <dependencies> )声明依赖项(库)。
在这里,您添加了一个具有组id的依赖项 net.dv8tion 和工件id JDA 带版本 4.2.0_222 (本文撰写时的最新版本(2020年5月2日)。
第二节( <repositories> )定义要查找的位置。jda不在maven central(默认)存储库中,而是在jcenter存储库中,因此您需要将jcenter存储库添加到 pom.xml .
如果将其打包到jar中,则不包括依赖项。为此,可以使用 maven-assembly-plugin ,例如。
您可以将插件添加到 pom.xml<plugins> 第二部分:

<plugin>
    <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
        <archive>
          <manifest>
            <mainClass>yourPackage.yourClass</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>

集成在您的 pom.xml ,可能是这样的:

<?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>com.bananaaction</groupId>
    <artifactId>IdeaProjects</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>
                <artifactId>maven-assembly-plugin</artifactId>
                    <configuration>
                    <archive>
                    <manifest>
                        <mainClass>yourPackage.yourClass</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>

但是,不要忘记更改主类。

相关问题