Is there any automated way to get artifact download URL back ?
I'm working with maven projects , I use bamboo for build automation.
After successful Build completion, artifacts will be pushed Jfrog artifactory.
My requirement here is to get the artifact download URL back in an automated way(Using bamboo Plugins, Rest API, Jfrog CLI, Maven or any other)
curlcommand to call the API (curl -u username:password -X GET "http://host/artifactory/api/search/gavc?g=group&a=artifact&v=version&c=class&repos=repo"or something). That'll give you JSON, which you can parse usingjq(if available) orsedor something. Bamboo might have a better way that I'm not aware of, though. - DarthFennec