3

In artifactory we have some local repo's. One of the repo's contains a lot of subfolders. Each subfolder contains a maven-metadata.xml and a lot of other folders and subfolders.

is the maven-metadata.xml updated very time with the same date as the date of the last updated file in that folder?

I'm searching for an easy way to check when an artifact was last uploaded/updated without checking every file in every subfolder.

carlspring
  • 31,231
  • 29
  • 115
  • 197
DenCowboy
  • 13,884
  • 38
  • 114
  • 210

1 Answers1

1

The date inside maven-metadata.xml files should be to update if you upload every time that you:

  • Upload a new artifact version of an existing artifact
  • Upload a new artifact.

So you can use this date as reference.

Javier C.
  • 7,859
  • 5
  • 41
  • 53
  • do you maybe know when the .index is updated? It seems to be updated very recently but there was not a new upload. – DenCowboy Oct 27 '17 at 05:57