您将使用Maven存档器:
<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}


