gpt4 book ai didi

maven - 如何为我现有的 maven 项目创建 list 文件

转载 作者:行者123 更新时间:2023-12-05 01:45:42 25 4
gpt4 key购买 nike

我有一个 Maven 项目。该应用程序有一个带有 main 方法的类。我正在为此应用程序创建一个 jar 文件,它将被批处理调用。批处理将调用 jar 文件,理论上它将使用 main 方法查找类。但是应用程序缺少 list 文件。所以我需要创建一个让 jar 运行。

我无法找到如何使用 Maven 创建 list 文件。我需要手动创建 META-INF 目录和 Manifest.mf 文件并填充它,还是有任何使用 Maven 的自动方式?

最佳答案

使用 maven-jar-plugin:

 <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<!-- Configures the content of the created manifest -->
<manifest>
<!-- Adds the classpath to the created manifest -->
<addClasspath>true</addClasspath>
<!-- Specifies that all dependencies of our application are found -->
<!-- Configures the main class of the application -->
<mainClass>xxx.zzz.yyy.MainClass</mainClass>
</manifest>
</archive>
</configuration>

</plugin>

关于maven - 如何为我现有的 maven 项目创建 list 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40633241/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com