On Tue, Nov 27, 2012 at 2:43 PM, daniel echalar <[email protected]> wrote: > Hi, > > I'm new in maven, > To add a dependency to my pom.xml, usually, I google the artifact, class, > jar and then go to http://mvnrepository.com and try luck by searching key > words, however sometimes it takes too much time, or I get stuck. > So the question is, is there any formal/structured procedure to find > dependencies in maven?
I think if the artifacts are deployed to Central (or to repositories you added to your POM), some IDEs can lookup the artifact providing a missing class. > Right now I'm looking dependencies for : > > import org.jboss.soa.bpel.console.ModelAdaptor; JBoss don't publish to Central, they have their own repository. https://community.jboss.org/wiki/MavenGettingStarted-Users https://community.jboss.org/wiki/MavenRepository https://repository.jboss.org/nexus/index.html#nexus-search;classname~org.jboss.soa.bpel.console.ModelAdaptor > import com.google.gson.*; http://search.maven.org/#search%7Cga%7C1%7Cfc%3A%22com.google.gson%22 -- Thomas Broyer /tɔ.ma.bʁwa.je/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
