Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-05-01 Thread Ryan Withers
Matt, Thanks for looking into this, the basic project also exhibited the same issues, I'm not sure if that's important. The other thing I might add is that the suggestion to run appfuse:full-source before doing any development was finally what worked for me. I copied my sources to the side del

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-05-01 Thread Matt Raible
You are correct that AppFuse 2.0.1:Struts 2 Modular:full-source has issues. After running full-source, if you change web/pom.xml from: org.apache.struts struts2-spring-plugin ${struts.version} To: org.apache.struts

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Seba
Solved! i added the dependency at the beginning of the dependencies tag Matt Raible escribió: If you do mvn -X, do you see different versions of Spring in your dependencies list? Matt On Mon, Apr 28, 2008 at 11:09 AM, Seba <[EMAIL PROTECTED]> wrote: i have already added that dependency in

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Seba
really i don't know where to look for. i attached 'mvn -X' log file (sorry for my english!) Seba Matt Raible escribió: If you do mvn -X, do you see different versions of Spring in your dependencies list? Matt On Mon, Apr 28, 2008 at 11:09 AM, Seba <[EMAIL PROTECTED]> wrote: i have alread

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Matt Raible
If you do mvn -X, do you see different versions of Spring in your dependencies list? Matt On Mon, Apr 28, 2008 at 11:09 AM, Seba <[EMAIL PROTECTED]> wrote: > i have already added that dependency into dependencies tag: > > >... > > >org.springframework >spring-tes

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Seba
i have already added that dependency into dependencies tag: ... org.springframework spring-test ${spring.version} true * org.springframework spring-web ${spring.version} *

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Matt Raible
Adding the following to your pom.xml should do the trick. org.springframework spring-web ${spring.version} Matt On Mon, Apr 28, 2008 at 10:58 AM, Seba <[EMAIL PROTECTED]> wrote: > Hi! i'm getting the same errors on both Ubuntu 7.10 and Window

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Seba
Hi! i'm getting the same errors on both Ubuntu 7.10 and Windows. I'm trying to start a new proyect but i can't make it woks enviroment: maven 2.09 (new repo) jdk1.5.0_06 mysql-5.0.51b my steps were: 1) C:\Source>mvn archetype:create -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifa

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Alex Worden
On Mon, Apr 28, 2008 at 8:42 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > On Mon, Apr 28, 2008 at 9:23 AM, Alex Worden <[EMAIL PROTECTED]> wrote: > > On Mon, Apr 28, 2008 at 5:49 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > > > Using "mvn appfuse:full-source" works best if you do it at the > >

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Matt Raible
On Mon, Apr 28, 2008 at 9:23 AM, Alex Worden <[EMAIL PROTECTED]> wrote: > On Mon, Apr 28, 2008 at 5:49 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > > Using "mvn appfuse:full-source" works best if you do it at the > > beginning of a project, not after you've already started creating > > entitie

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Alex Worden
On Mon, Apr 28, 2008 at 5:49 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > Using "mvn appfuse:full-source" works best if you do it at the > beginning of a project, not after you've already started creating > entities. > > Matt Hi Matt, I fear that it doesn't work at all. I tried this with the S

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-28 Thread Matt Raible
Using "mvn appfuse:full-source" works best if you do it at the beginning of a project, not after you've already started creating entities. Matt On Mon, Apr 28, 2008 at 12:18 AM, Ryan Withers <[EMAIL PROTECTED]> wrote: > Vincent / Matt, > > I was successful at pulling down the sources with mvn a

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-27 Thread Ryan Withers
Vincent / Matt, I was successful at pulling down the sources with mvn appfuse:full-source. I had to adjust all of my code to reference the newly pulled down classes with my projects package structure (that was to be expected). However, what I'm wrestling with is that it seems none of the confi

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-25 Thread Vincent Ramdhanie
I had a similar problem with netbeans before, using *mvn appfuse:full-source * solved the problem for me. Vincent On Fri, Apr 25, 2008 at 10:56 AM, Ryan Withers <[EMAIL PROTECTED]> wrote: > Matt, > > Thanks for the response. I was hoping to verify that the struts2 appfuse > basic struts jar fil

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-25 Thread Matt Raible
It's a NetBeans issue with the warpath plugin. If you use IDEA or Eclipse (generating files with idea:idea or eclipse:eclipse), everything should work. Of course, the command-line is guaranteed to work as its pure Maven. Matt On Fri, Apr 25, 2008 at 7:56 AM, Ryan Withers <[EMAIL PROTECTED]> wrote

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-25 Thread Ryan Withers
Matt, Thanks for the response. I was hoping to verify that the struts2 appfuse basic struts jar file was at least getting downloaded. In the project itself when implementing the unit test for the action class Netbeans is complaining that it can't find the BaseActionTestCase. Looking at the pr

Re: [appfuse-user] Missing jars from Struts2 Archetype

2008-04-25 Thread Matt Raible
I don't understand what the problem is. What are you hoping to see with the find command? On Fri, Apr 25, 2008 at 7:49 AM, Ryan Withers <[EMAIL PROTECTED]> wrote: > Hello All, > > I'm working on a project (writing an article actually) concerning appfuse. > I'm using the following archtype: > >

[appfuse-user] Missing jars from Struts2 Archetype

2008-04-25 Thread Ryan Withers
Hello All, I'm working on a project (writing an article actually) concerning appfuse. I'm using the following archtype: mvn archetype:create -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-basic-struts -DremoteRepositories=http://static.appfuse.org/releases -DarchetypeV