0

Maven writes metadata about package versioning and so on to files called maven-metadata*.xml I have to determine the root cause of some version changes in such a metadata file, because it seems to break a build of mine.

Is there a command line call with which I can download this file to my local computer for a specific package and for a specific Nexus repository? Or is there another way to find out, how a maven repository sets these version information?

carlspring
  • 31,231
  • 29
  • 115
  • 197
Bertolt
  • 995
  • 1
  • 13
  • 37

1 Answers1

0

Pretty simple solution (I should have seen it in the first place):

Nexus stores the maven-metadata.xml from itself and the different remote repositories under

/<nexus_install_dir>/storage/<repo_name>/<packae_and_artifact_id>/maven-metadata.xml
Bertolt
  • 995
  • 1
  • 13
  • 37