in src/main/java/org/apache/maven/shared/archiver/PomPropertiesUtil.java [83:90]
public void createPomProperties(
Project project, Archiver archiver, Path customPomPropertiesFile, Path pomPropertiesFile)
throws IOException {
final String groupId = project.getGroupId();
final String artifactId = project.getArtifactId();
final String version = project.getVersion();
createPomProperties(groupId, artifactId, version, archiver, customPomPropertiesFile, pomPropertiesFile);
}