Re: [appfuse-user] starting with Appfuse 2 from scratch

2010-11-05 Thread Vanessa Pacheco
I got all my issues solved (except one). I am able to follow the QuickStart steps and get a running working app. My problem was the java version. I had java6 update02. I got update 22 and now everything works fine. My only issue is that with my env CATALINA variable and one other change to pom

Re: [appfuse-user] Appfuse 2.1 release

2010-11-05 Thread Matt Raible
Yes. There's 40ish open issues left. I hope to fix 10 more or so, then release 2.1.0-M2. 2.1.0 shortly after. On Nov 5, 2010, at 12:54 AM, Kissue Kissue wrote: > Hi Matt, > > Is there any chance that appfuse 2.1 could still be released this year? > > Thanks. -

Re: [appfuse-user] starting with Appfuse 2 from scratch

2010-11-05 Thread Matt Raible
On Nov 5, 2010, at 7:26 AM, Vanessa Pacheco wrote: > I got all my issues solved (except one). > > I am able to follow the QuickStart steps and get a running working app. My > problem was the java version. I had java6 update02. I got update 22 and now > everything works fine. > > My only issue

[appfuse-user] warpath and release plugin

2010-11-05 Thread Josep García
I am trying to use the maven release plugin, which seems to be very interesting. I have a multi-module project, in which I use the warpath plugin to do overlaying. This works nicely. However, when doing a mvn release:prepare, I get a build error on the first module that uses warpath: [INFO] [INF

Re: [appfuse-user] warpath and release plugin

2010-11-05 Thread Matt Raible
The warpath plugin allows you to include a WAR as a JAR and get its dependencies. The war plugin does overlaying, but it doesn't allow you to depend on a WAR as if it's a JAR. Don't know if that helps or not. On Nov 5, 2010, at 9:51 AM, Josep García wrote: > I am trying to use the maven release

Re: [appfuse-user] warpath and release plugin

2010-11-05 Thread Josep García
It seems to me that the release plugin tries to resolve the declared dependencies in the pom, and for the warpath overlaying I have: ${pom.parent.groupId} portasigma-web ${pom.parent.version} war ${pom.parent.gro

Re: [appfuse-user] warpath and release plugin

2010-11-05 Thread Matt Raible
Yes, overlaying will still happen if you remove the warpath dependency. If your app still runs and works properly, you might not need to have it at all. On Nov 5, 2010, at 10:00 AM, Josep García wrote: > It seems to me that the release plugin tries to resolve the declared > dependencies in the

Re: [appfuse-user] starting with Appfuse 2 from scratch

2010-11-05 Thread Vanessa Pacheco
Matt, > My only issue is that with my env CATALINA variable and one other change to > pom.xml, it >still doesn't depoly to my installed version of tomcat. >What do you see when run "echo %CATALINA_HOME%" from the command line? Here's the command I ran, with output. In windows its a user environ

Re: [appfuse-user] starting with Appfuse 2 from scratch

2010-11-05 Thread Matt Raible
On Nov 5, 2010, at 10:13 AM, Vanessa Pacheco wrote: > Matt, > >> My only issue is that with my env CATALINA variable and one other change to >> pom.xml, it >still doesn't depoly to my installed version of tomcat. >> What do you see when run "echo %CATALINA_HOME%" from the command line? > > He

Re: [appfuse-user] starting with Appfuse 2 from scratch

2010-11-05 Thread Vanessa Pacheco
> C:\>echo %CATALINA_HOME% > c:\tomcat6 >This should work. What makes you think Cargo is not using it when running >tests? To be sure >it's using it, you could remove the following from your >pom.xml: Yeah, the zipUrlInstaller section is commented in my actual file. I guess what I am looking fo

Re: [appfuse-user] starting with Appfuse 2 from scratch

2010-11-05 Thread Matt Raible
On Nov 5, 2010, at 10:34 AM, Vanessa Pacheco wrote: >> C:\>echo %CATALINA_HOME% >> c:\tomcat6 >> This should work. What makes you think Cargo is not using it when running >> tests? To be sure >it's using it, you could remove the following from your >> pom.xml: > > Yeah, the zipUrlInstaller sec

Re: [appfuse-user] warpath and release plugin

2010-11-05 Thread Josep García
By dropping the warpath dependencies, the release:prepare goal seems to work ok, and the overlaying is still done. Thanks Josep 2010/11/5 Matt Raible > Yes, overlaying will still happen if you remove the warpath dependency. If > your app still runs and works properly, you might not need to have