maven 没有为 Spring Boot 项目创建 META-INF

问题描述 投票:0回答:2

当我构建 Spring boot 项目时,它会创建一个目标文件夹并 目标/类也一样,但它不会创建任何 META-INF。我还包括了依赖项 -

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
    <archive>
        <index>true</index>
        <manifest>
            <addClasspath>true</addClasspath>
        </manifest>
        <manifestEntries>
            <mode>development</mode>
            <url>${project.url}</url>
            <key>value</key>
        </manifestEntries>
    </archive>
</configuration>

java maven maven-plugin
2个回答
5
投票

有两种方法。

  1. 形成 maven-jar-plugin 文档:

请注意以下参数已被完全删除 从插件配置:

useDefaultManifestFile

如果您需要定义自己的MANIFEST.MF文件,您可以简单地实现 通过 Maven Archiver 配置,如下例所示:

<configuration>
    <archive>
        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
    </archive>
</configuration>

您可以将

MANIFEST.MF
放置在项目的
src/main/resources/META-INF
文件夹下。命令

mvn clean package

默认情况下会使用 src/main/resources 构建项目 jar。

  1. 插件的使用中的注释指出

从2.1版本开始,maven-jar-plugin使用Maven Archiver 3.1.1.这意味着默认情况下它不再在清单中创建规范和实现详细信息。如果你想要它们 你必须在你的插件配置中明确说明。

可以使用以下方法完成:

<manifest>
     <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
     <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>

0
投票
Adding below entry under <plugins> tag in pom.xml worked for me
<plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
© www.soinside.com 2019 - 2024. All rights reserved.