In addition to what Dave suggested, there are other maven search tools, my new favorite is -
http://www.jarvana.com/jarvana/ Seems to me that mvnrepository.com is always down when I *need* to be able to search :) Jarvana allows you to search for classes and find out which artifacts provide them, which is nifty when you are getting class not found exceptions. -Wes On Wed, May 27, 2009 at 10:55 PM, Dave Newton <[email protected]> wrote: > Martin Gainty wrote: >> >> dont know if this has the correct version and groupID you're looking for >> but checkout >> http://repo1.maven.org/maven2/spring/spring/1.0.2/ > > Spring 1.0.2? > > I don't even know if Struts 2 would work with a Spring that old. I'd be > skeptical that the Spring plugin would, and the Spring plugin has a > dependency on 2.0.mumble. > > As it turns out, there are ways to find these kinds of things out rather > than just presenting people with what are essentially random numbers. By > looking in the S2 poms, or by taking a few seconds to look it up on > something like mvnrepository.com. There we discover the following: > > http://www.mvnrepository.com/artifact/org.apache.struts/struts2-spring-plugin > > From there, since the OP mentioned he was trying to use 2.0.11 (to the OP: > up that to 2.0.14 if you're sticking with 2.0), we'll click the "2.0.14" > link for the plugin: > > http://www.mvnrepository.com/artifact/org.apache.struts/struts2-spring-plugin/2.0.14 > > There we discover the following: > > junit junit 3.8.1 > org.springframework spring-beans 2.0.5 > org.springframework spring-context 2.0.5 > org.springframework spring-core 2.0.5 > org.springframework spring-mock 2.0.5 > org.springframework spring-web 2.0.5 > > No guessing required. > > Dave > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > -- Wes Wannemacher Author - Struts 2 In Practice Includes coverage of Struts 2.1, Spring, JPA, JQuery, Sitemesh and more http://www.manning.com/wannemacher --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

