如何使用 Maven 将实现版本值添加到 jar 清单?

2022-09-01 03:47:25

我想在 jar 文件中的清单中添加一个实现版本行,以反映 POM 版本号。我无法为我的生活找出如何使用jar插件来做到这一点。

这可能吗?


答案 1

您将使用 Maven Archiver:

<plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-jar-plugin</artifactId>
      <configuration>
        <archive>
          <manifest>
            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
          </manifest>
        </archive>
      </configuration>
    </plugin>
  </plugins>

这会将以下内容添加到清单文件中:

Implementation-Title: ${pom.name}
Implementation-Version: ${pom.version}
Implementation-Vendor-Id: ${pom.groupId}
Implementation-Vendor: ${pom.organization.name}

答案 2

推荐