我用intellij idea制作了一个maven项目。但是当我将项目构建到jar时,jar中的MANIFEST.MF不是我的,看起来像我的maven lib`s MANIFEST.MF
我的MANIFEST.MF在intellij中的想法: enter image description here
jar中的MANIFEST.MF: enter image description here
答案 0 :(得分:0)
默认情况下,Maven Archiver会为您生成清单文件。您可以使用归档程序的<manifestFile>
配置元素指定自定义清单文件,例如:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
...
<configuration>
<archive>
<manifestFile>src/main/manifests/MANIFEST.MF</manifestFile>
</archive>
</configuration>
...
</plugin>
有关存档的更多信息,请访问Maven Archiver