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

时间:2009-05-28 15:57:51

标签: java maven-2 build-process jar manifest

我想将一个Implementation-Version行添加到我的jar文件中反映POM版本号的清单。我不能为我的生活解决如何使用jar插件来做到这一点。

这可能吗?

1 个答案:

答案 0 :(得分:39)

你会使用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}