frameworks - looking for up to date Maven dependencies/repos -
this far i've been working on projects without using build manager, i've used maven once before , found pretty useful, i'd start implementing on new projects.
i'm starting web application uses hibernate, jpa, struts2, log4j, ajax, apache commons jquery , junit i'm failing epicly @ finding right dependency declarations include in maven pom.
is there date list of repos, artifact id's, etc use?
thanks in advance!
this use: http://mvnrepository.com/
apart 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 pom.xml
<repositories> <repository> <id>maven2-repository.dev.java.net</id> <name>java.net repository 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 there plug-in firefox mvnrepository.com see here:
https://addons.mozilla.org/en-us/firefox/addon/mvnrepository-search/
thank @sébastien le callonnec
note: tool seems bit old, on firefox 3.6, says, "this search engine isn't supported firefox , can't installed." sorry misinformation.
Comments
Post a Comment