I have an application that I package as multiple jars. Each JAR are uploaded to a private maven repository on a local server.
Is there an API that exists that would allow me to check if an update is available for one of my JAR exclusiveley on my local maven repository, directly from the java application, not from maven?
I would use this to develop an "auto-update" feature in my application. I figure that since maven is already built to search and download dependencies, why re-invent the wheel?
Thanks!