We have created a jar file that is stored locally and called as a maven dependency, which is working fine. But, whenever there is an update to the jar file, we have to inform everyone and download the latest jar from SharePoint.
Expectation: whenever there is a version update to a jar file, we will store it in a cloud location like github so that everyone can pull the latest jar file when they use maven install.
I have checked many articles in Stack Overflow and most of them did not work for me. your help is appreciated.
We have created a jar file that is stored locally and called as a maven dependency, which is working fine. But, whenever there is an update to the jar file, we have to inform everyone and download the latest jar from SharePoint.
Expectation: whenever there is a version update to a jar file, we will store it in a cloud location like github so that everyone can pull the latest jar file when they use maven install.
I have checked many articles in Stack Overflow and most of them did not work for me. your help is appreciated.
This way your team can pull required/latest version from repo.
-SNAPSHOT
versions are reloaded/updated continuously. However if you want versoned jars, you might keep a global parent POM with<dependencyManagement>
with a central version you can keep up-to-date, – Joop Eggen Commented Jan 8 at 12:14