How do I take a jar file that I have and add it to the dependency system in maven 2? I will be the maintainer of this dependency and my code needs this jar in the class path so that it will compile.
|
You'll have to do this in two steps: 1. Give your JAR a groupId, artifactId and version and add it to your repository.If you don't have an internal repository, and you're just trying to add your JAR to your local repository, you can install it as follows, using any arbitrary groupId/artifactIds:
You can also deploy it to your internal repository if you have one, and want to make this available to other developers in your organization. I just use my repository's web based interface to add artifacts, but you should be able to accomplish the same thing using 2. Update dependent projects to reference this JAR.Then update the dependency in the pom.xml of the projects that use the JAR by adding the following to the element:
|
|||
|
You can also specify a dependency not in a maven repository. Could be usefull when no central maven repository for your team exist or if you have a CI server
|
|||||
|
|
Actually, on investigating this, I think all these answers are incorrect. Your question is misleading because of our level of understanding of In
Now, |
||||
|
|
I'd do this:
|
|||
|
|
|
I'll assume that you're asking how to push a dependency out to a "well-known repository," and not simply asking how to update your POM. If yes, then this is what you want to read. And for anyone looking to set up an internal repository server, look here (half of the problem with using Maven 2 is finding the docs) |
||||
|