作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 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/
我是一名优秀的程序员,十分优秀!