我有一个项目,我想导出为jar(由于某些原因,它不可能导出为可运行的jar)。我有3个maven依赖项,gson
,io
和junit
,但是当我在控制台中执行maven builded jar时它说:
检查我的构建路径:
我以这种方式导出它(Eclipse): 以 - >运行Maven构建......
(mvn) package
这是我的pom:
<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>
<groupId>Carlos</groupId>
<artifactId>Buscaminas</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Buscaminas</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib/</classpathPrefix>
<mainClass>res.application.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.2</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>
</dependencies>
</project>
答案 0 :(得分:0)
根据我的理解,你需要的可能就是这个
mvn install dependency:copy-dependencies
答案 1 :(得分:0)
我的项目似乎没有正确的项目结构,因此我创建了一个新的(maven)项目并将我的包迁移到src / main / java文件夹,然后使用它:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>create-my-bundle</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>res.application.Main</mainClass> <!-- Or wherever is your main method-->
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
执行mvn package
它创建了一个“jar-with-dependencies”jar,还包含所有的资源(图像,接口fxml文件......)。
答案 2 :(得分:0)
构建的jar不包含依赖项,你必须在执行jar时在类路径中提供它们,或者让构建过程将它们复制到jar中,创建一个所谓的uber-jar。实现后者的好方法是使用maven-shade-plugin。