开发者

looking for up to date Maven dependencies/repos [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 8 years ago.

Improve this question

this far i've been working on projects without using any build manager, i've used Maven just once before and found it pretty useful, so i'd like to start implementing it on my new projects.

I'm starting a Web application that uses Hibernate, JPA, Struts2, log4j, Ajax, Apache Commons Jquery and Junit but i'm failing epicly at finding the right dependency declarations to inclu开发者_开发问答de in my Maven pom.

Is there some up to date list of the repos, artifact id's, etc that i could use?

Thanks in advance!


This is what I use: http://mvnrepository.com/

Apart from this I use

  • JBoss Maven Repository: https://repository.jboss.org/nexus/index.html#welcome
  • Java Maven2 repo: http://download.java.net/maven/2/ or http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html

I have these repositories in my pom.xml

  <repositories>
    <repository>
      <id>maven2-repository.dev.java.net</id>
      <name>Java.net Repository for Maven</name>
      <url>http://download.java.net/maven/2/</url>
      <layout>default</layout>
    </repository>
  </repositories>
 <repository>
    <id>jboss</id>
    <url>http://repository.jboss.com/maven2</url>
    <snapshots>
      <enabled>false</enabled>
    </snapshots>
</repository>

Just realized that there is an plug-in for Firefox to look into mvnrepository.com see here:

https://addons.mozilla.org/en-US/firefox/addon/mvnrepository-search/

Thank you @Sébastien Le Callonnec

NOTE: This tool seems to be bit old, on FireFox 3.6, it says, "This search engine isn't supported by Firefox and can't be installed." Sorry for misinformation.


  1. Everything you want is on the default central repo.
  2. http://mavencentral.sonatype.com/
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜