I have a jar files that cannot be found on maven2 repository. i interested to add the jar so i can just include extra tag in my pom.xml file and other developer can use the jar. what is the steps needed to upload the jar to http webserver webfolder? what file should i uploaded beside custom.jar ? what other files need to exist on the webfolder side by side with custom.jar
|
feedback
|
|
If you already have a web server set up pointing on a web folder, a simple way to deploy your custom JAR would to use the
Only the 3 first parameters are mandatory (short version). If you wonder what the repositoryId is, the documentation of the Mojo says:
In other words, the simplest way to use this would be to copy your custom JAR on the machine hosting the web server and to use the
Actually, using a web server to host your own Maven repository is perfectly fine but it can be a bit painful to initialize. One solution to solve this issue is to use a Maven proxy (like Nexus for example) instead of just a Maven repository. But this goes beyond your question. For more resources on this, check (the principles are still valid even if the implementation solutions are a bit outdated): | |||
|
feedback
|
|
Preferably, you would need a local maven repository. One option for this is Nexus Or if you are working just yourself, you can save the overhead and put the jars in the repository on your machine - under | |||||
feedback
|
|
Next command helps to install the jar to the local repository. After this you can upload folder with the jar from local to the remote repository.
| ||||
|
feedback
|