maven依赖没有添加到eclipse中的jar

我正在使用 java 11 下的 eclipse 2018.09 编写一个 maven 项目,但我在创建 maven jar 时遇到了问题。当我清理项目包时,它为我提供了一个 jar,但没有添加任何依赖项,我有时会在 eclipse 中收到警告,例如:

类路径条目 junit(例如)将不会被导出,它可能会导致 ClassNotFoundException。

这实际上是我启动 jar 项目时发生的事情。


繁花不似锦
浏览 226回答 2
2回答

白衣染霜花

它为我提供了一个 jar,但没有将依赖项添加到 [it]这是完全正常的。默认情况下,Maven 构建 jar 时,不会在其中添加任何依赖项,而只会添加您当前项目的 .class 和资源。当您运行程序时,您希望它找到您的依赖项,否则您将面临 ClassNotFoundException。因此,您必须配置类路径以引用依赖项。1-如果您想使用 Maven 从本地计算机运行程序,请使用 exec Maven 插件,并<java>在您的 pom 中定义目标,如下所述:https&nbsp;:&nbsp;//www.mojohaus.org/exec-maven-plugin/usage。 html#Java_goal或者,您可以从 IDE 中的启动器运行它。IDE 将为您构建类路径,并且类路径将正确包含您的依赖项。2-如果您想在任何计算机上从命令行运行,则必须将所有依赖项复制到一个目录中(使用 Maven 的依赖项插件mvn dependency:copy)并像这样运行您的 jar:java -cp myProgram.jar:dependencyDirectory/* com.blabla.MainClass(注意使用 ';' 或 ':' 和 '/' 或 '\' 取决于 Linux/Windows)3-作为替代方案,您可以使用 java -jar myprogram.jar 运行您的 jar,但前提是它包含正确的 MANIFEST.MF,其中所有依赖项的位置都是硬编码的。我的建议是首先针对解决方案 1 或 2。PS:您还可以创建包含您的依赖项的“fat jars”或“uber jars”,但我建议您不要首先针对此解决方案。

喵喵时光机

您可以简单地将其添加到您的 pom.xml(在 <plugins> 标签下):&nbsp; &nbsp; &nbsp; &nbsp; <plugin>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <artifactId>maven-assembly-plugin</artifactId>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <configuration>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <archive>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <manifest>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <mainClass>App</mainClass>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </manifest>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </archive>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <descriptorRefs>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <descriptorRef>jar-with-dependencies</descriptorRef>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </descriptorRefs>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </configuration>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <executions>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <execution>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <id>make-assembly</id>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <phase>package</phase>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <goals>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <goal>single</goal>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </goals>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </execution>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </executions>&nbsp; &nbsp; &nbsp; &nbsp; </plugin>请记住将主类更改为您的入口点(是哪个类static void main(string[args]))。现在,当您运行命令mvn clean install时,targets文件夹中将有一个名称为 jaryourproject-version-SNAPSHOT-jar-with-dependencies.jar
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java