In one of our project we are planning to generate multiple jar files (basically libraries, which contain no dependencies) .
We would like to upload these jar files to local maven repository (Archiva looks good, we are also open to other options) so other developers can simply use them.
(Single jar file deploy works great)
PS: We are using maven.
Thanks in advance.
When you build your jar files with Maven, you simply call
mvn deploy(having a correctsettings.xml) and the jar goes into your Maven repository.If you have jars not built with Maven, you can use
mvn deploy:deploy-fileto upload them.