0

我正在尝试使用 eclipse mars 从 maven 项目创建一个可执行的 .jar。该项目本身可以在https://github.com/jsprit/jsprit上找到

到目前为止,我已经成功地将 jsprit 作为 maven 项目导入到 eclipse 中,并且我能够将示例作为 Java 应用程序运行。

我还没有很成功地将它导出为可执行 jar。假设我要导出 SimpleExample.java。我已经创建了 .jar,但是如果我尝试运行 jsprit-examples-1.6.2-SNAPSHOT-jar-with-dependencies.jar,我会收到以下错误消息:

错误:无法找到或加载主类 jsprit.examples.SimpleExample

位于 jsprit-examples 下的 pom.xml 如下:

<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">
<parent>
    <groupId>jsprit</groupId>
    <artifactId>jsprit</artifactId>
    <version>1.6.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>jsprit-examples</artifactId>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>org.apache.maven.plugins</groupId>
                                    <artifactId>maven-enforcer-plugin</artifactId>
                                    <versionRange>[1.0.0,)</versionRange>
                                    <goals>
                                        <goal>enforce</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <ignore/>
                                </action>
                            </pluginExecution>
                        </pluginExecutions>
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>                
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <mainClass>jsprit.examples.SimpleExample</mainClass>
                        </manifest>
                    </archive>
                    <descriptors>
                        <descriptor>src/main/resources/assemblies/jar-with-dependencies.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>java</goal>
                        </goals>
                    </execution>
                 </executions>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

<repositories>
    <repository>
        <id>jsprit-snapshots</id>
        <url>https://github.com/jsprit/mvn-rep/raw/master/snapshots</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>jsprit-instances</artifactId>
        <version>${project.version}</version>
    </dependency>

    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>jsprit-core</artifactId>
        <version>${project.version}</version>
    </dependency>

    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>jsprit-analysis</artifactId>
        <version>${project.version}</version>
    </dependency>
</dependencies>

其他一切都与 github 存储库中的相同。我在 jsprit-examples 上运行了“Maven Build ...”。在“编辑配置->目标”下,我做了“清理包组件:单个”。

这是我第一次使用 maven 构建,所以对于有一些 maven 经验的人来说,这可能是一个非常简单的问题。

谢谢!

4

1 回答 1

0

我想将所有依赖项放在一个可执行 jar 中,您需要创建一个 uber-jar。我通常使用maven shade 插件来做到这一点。

于 2015-11-26T19:24:46.510 回答