Reputation: 41
Using Apache Archiva as a repository manager to control what maven artifacts users download. Want the artifacts managed by Archiva to reside in a SCM system (git) to be able to clearly tag everything that a particular version of the software suite uses. How does one go about doing this?
Upvotes: 0
Views: 96
Reputation: 97437
A particular version of your software which has a particular version doesn't need to be tagged in that way, cause the version of your software has a pom.xml which describes all artifacts (also their transitive dependencies) which are needed to rebuilt from scratch. The only thing you need to do is making a backup of your repository manager storage.
Upvotes: 1