I am trying to include some dependencies in my maven project. These dependencies are not available in the default Mven 2 repository http://repo1.maven.org/maven2/.

They are available at http://mvnrepository.com/

But I couldn't find the profile for this site to include in my settings.xml

Does anyone know what this repository's url and profile is?

Thanks.

link|improve this question

0% accept rate
feedback

2 Answers

mvnrepository.com isn't a repository. It's a search engine. It might or might not tell you what repository it found stuff in if it's not central; since you didn't post an example, I can't help you read the output.

link|improve this answer
I will counter the part where "it might or might not tell you what repository it found stuff in". It works with Maven Central. Otherwise, yes, this isn't an actual Maven Repository, but just a search engine for dependencies. – carlspring Jul 8 '11 at 15:27
I was looking for this: <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> but could not find it in repo1.maven.org – user786045 Jul 8 '11 at 17:19
That one is 'special'. Better to use Geronimo. But if you must, it happens to live at java.net. – bmargulies Jul 8 '11 at 17:33
@carl it looks at more than maven central, and the answer above shows that it does reveal where it found any given thing. – bmargulies Jul 10 '11 at 23:06
feedback

Once you've found your jar through mvnrepository.com, hover the "download (JAR)" link, and you'll see the link to the repository which contains your jar (you can probably Right clic and "Copy link URL" to get the URL, what ever your browser is).

Then, you have to add this repository to the repositories used by your project, in your pom.xml :

<project>
  ...
  <repositories>
    <repository>
      <id>my-alternate-repository</id>
      <url>http://myrepo.net/repo</url>
    </repository>
  </repositories>
  ...
</project>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.