2

Maven generates a pom.properties file inside META-INF/maven/${groupId}/${artifactId} than contains the version, groupId and artifactId.

Can I add my own entries?

If would like to manage information like SVN url, site url, etc. in the artifact. Besides the MANIFEST.MF, the pom.properties seems to be an obvious place for that.

J Fabian Meier
  • 33,516
  • 10
  • 64
  • 142

1 Answers1

3

The pom.properties is generated by maven-archiver. You can not add entries. But what you can make to create your own.

I would suggest to put such information into MANIFEST.MF file instead which can be configured via attributes in the pom file.

khmarbaise
  • 92,914
  • 28
  • 189
  • 235