我已经写了一个小的Java命令行工具,我想用它运行(例如)
java -jar myJarFile.jar de.my.path.MainClass arg0 arg1 arg2
为了构建jar-File并管理依赖项,我正在使用Maven。现在我发现,Maven没有在Jar-File中包含POM-File的依赖性。所以,当我运行我的jar文件时,我得到了ClassNotFoundExceptions ..但是为了执行我的jar文件,我需要在类路径中使用这些库。
我如何使用Maven管理这个?
感谢您的帮助!!
答案 0 :(得分:3)
将此maven程序集插件放在pom.xml中:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>de.my.path.MainClass</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
答案 1 :(得分:2)