gpt4 book ai didi

spring-boot - 使用spring boot maven插件构建jar时如何在manifest.mf中添加Classpath属性

转载 作者:行者123 更新时间:2023-12-04 02:49:07 25 4
gpt4 key购买 nike

我正在使用 spring boot maven 插件。我需要在生成的 manifest.mf 文件中添加 class-path 属性。这个 class-path 条目应该包含 spring boot 创建的 fat jar 文件的 lib 文件夹中存在的所有 jar 文件。这可能吗?

最佳答案

有一个简单的解决方案

只有你需要的是添加

maven-war-plugin



或者

maven-jar-plugin


<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>http://sample.com</url>
<key>value</key>
</manifestEntries>
</archive>
</configuration>
</plugin>

并将您的附加值放在 manifestEntries 中。

问候
亚历山大

关于spring-boot - 使用spring boot maven插件构建jar时如何在manifest.mf中添加Classpath属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28433964/

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