Re: Struts2, Spring & Maven

2009-05-28 Thread Wes Wannemacher
Yeah, the author posted a link to it on u...@maven.a.o a while ago... IIRC, one of the problems with mvnrepository.com is that the actual maven guys can never get anyone to claim ownership. It is sort of a mysterious entity on the 'net. You combine the inability to contact anyone regarding problems

RE: Struts2, Spring & Maven

2009-05-28 Thread Martin Gainty
n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Thu, 28 May 2009 10:33:56 -0400 > Subject: Re: Struts2, Spring &a

Re: Struts2, Spring & Maven

2009-05-28 Thread Musachy Barroso
wow, that website rocks. On Thu, May 28, 2009 at 9:17 AM, Dave Newton wrote: > Wes Wannemacher wrote: >> >> 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 whi

Re: Struts2, Spring & Maven

2009-05-28 Thread maestro
Thanks, lots of valuable information! It is hard to draw the line where things start and stop. Could it be that when creating a project with a Maven Archetype, not all of the dependencies are defined in the pom? Or does an artifact such as Struts2-spring-plugin 2.0.14 will automatically update it

Re: Struts2, Spring & Maven

2009-05-28 Thread Dave Newton
Wes Wannemacher wrote: 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. Nic

Re: Struts2, Spring & Maven

2009-05-28 Thread Wes Wannemacher
I'm working on it, I got sidetracked helping with Struts and starting my own business, but that's starting to calm down so I'll be back to work on important stuff soon :) -Wes On Thu, May 28, 2009 at 8:41 AM, wrote: > Nice tip Wes... now where is that book of yours?  I haven't received new > ch

Re: Struts2, Spring & Maven

2009-05-28 Thread stanlick
Nice tip Wes... now where is that book of yours? I haven't received new chapters in quite some time. On Thu, May 28, 2009 at 7:28 AM, Wes Wannemacher wrote: > In addition to what Dave suggested, there are other maven search > tools, my new favorite is - > > http://www.jarvana.com/jarvana/ > > S

RE: Struts2, Spring & Maven

2009-05-28 Thread Martin Gainty
> Date: Thu, 28 May 2009 08:28:29 -0400 > Subject: Re: Struts2, Spring & Maven > From: w...@wantii.com > To: user@struts.apache.org > > In addition to what Dave suggested, there are other maven search > tools, my new favorite is - > > http://www.jarvana.com/jarvana

Re: Struts2, Spring & Maven

2009-05-28 Thread Wes Wannemacher
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,

Re: Struts2, Spring & Maven

2009-05-27 Thread Dave Newton
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

RE: Struts2, Spring & Maven

2009-05-27 Thread Martin Gainty
ponsabilité pour le contenu fourni. > Date: Wed, 27 May 2009 21:58:49 -0400 > Subject: Re: Struts2, Spring & Maven > From: musa...@gmail.com > To: user@struts.apache.org > > update the versions in the pom.xml file, and hope for the best :) > > musachy > > On We

Re: Struts2, Spring & Maven

2009-05-27 Thread maestro
Thanks for the laugh! I did as you have suggested, changed to 2.0.11 and ran mvn install. However when viewing my project thru Eclipse I still see the 2.0.5.jars. Even after a refresh. Any ideas? - maestro On Wed, May 27, 2009 at 9:58 PM, Musachy Barroso wrote: > update the versions in the po

Re: Struts2, Spring & Maven

2009-05-27 Thread Musachy Barroso
update the versions in the pom.xml file, and hope for the best :) musachy On Wed, May 27, 2009 at 9:38 PM, maestro wrote: > Hello, > > I have created my project using the Maven Archetype 2.0.5. > I started to code along... > > I'm trying to connect to a database in a Spring bean. > Can't find a

Struts2, Spring & Maven

2009-05-27 Thread maestro
Hello, I have created my project using the Maven Archetype 2.0.5. I started to code along... I'm trying to connect to a database in a Spring bean. Can't find a specific class called DataSourceUtils. I then realise that newer versions of Struts2 and Spring are out. What is the best way to bring

Re: Unit Test with Struts2 + Spring + Maven

2009-03-07 Thread dusty
mvn -Dtest=MyTestClassName But don't let that think you can get Maven answers here! ;-) Nils-Helge Garli wrote: > > As both Martin and Dave pointed out, this is a maven related question. > Please check here: http://maven.apache.org/users/getting-help.html > > Nils-H > > On Fri, Mar 6, 200

Re: Unit Test with Struts2 + Spring + Maven

2009-03-05 Thread Nils-Helge Garli Hegvik
As both Martin and Dave pointed out, this is a maven related question. Please check here: http://maven.apache.org/users/getting-help.html Nils-H On Fri, Mar 6, 2009 at 8:19 AM, nani2ratna wrote: > > Can i run a particular test case. > Instead of running every test case all the time i just want t

Re: Unit Test with Struts2 + Spring + Maven

2009-03-05 Thread nani2ratna
Can i run a particular test case. Instead of running every test case all the time i just want to run only one test case. Thanks and Regards Ratna newton.dave wrote: > > nani2ratna wrote: >> I am just giving mvn test, it running the 2 tests in the >> srs/main/test/../HelloworldActionTest.java >

Re: Unit Test with Struts2 + Spring + Maven

2009-03-05 Thread Dave Newton
nani2ratna wrote: I am just giving mvn test, it running the 2 tests in the srs/main/test/../HelloworldActionTest.java and another test class. But how, from where its getting called. Please explain me how its calling those tests. Maven's surefire plugin will run tests--as Martin said you should

RE: Unit Test with Struts2 + Spring + Maven

2009-03-05 Thread nani2ratna
; Sender does not endorse distribution to any party other than intended > recipient. Sender does not necessarily endorse content contained within > this transmission. > > > > >> Date: Thu, 5 Mar 2009 06:44:06 -0800 >> From: nani2ra...@gmail.com >> To: user@struts

RE: Unit Test with Struts2 + Spring + Maven

2009-03-05 Thread Martin Gainty
contained within this transmission. > Date: Thu, 5 Mar 2009 06:44:06 -0800 > From: nani2ra...@gmail.com > To: user@struts.apache.org > Subject: Unit Test with Struts2 + Spring + Maven > > > Hi Everybody, > > I just created a struts 2 project from nexus. > It cre

Unit Test with Struts2 + Spring + Maven

2009-03-05 Thread nani2ratna
Hi Everybody, I just created a struts 2 project from nexus. It created a default project with 2 actions. Every thing is working excellent. But i got a doubt how this Unit test is working. I am just giving mvn test, it running the 2 tests in the srs/main/test/../HelloworldActionTest.java and anot