[appfuse-user] Localization by urlrewrite

2010-02-03 Thread Amir Latifi
Hi I don't know it's right place to ask or not. We have a project based on appfuse, we use url rewrite for localization by some rules like this: /en /myHome.action?locale=en /en/ /myHome.action?locale=en First rule is ok but the second one which

Re: [appfuse-user] Localization by urlrewrite

2010-02-03 Thread Matt Raible
Unfortunately, I don't know the answer to this question. I'd suggest asking it on the UrlRewriteFilter mailing list. On Wed, Feb 3, 2010 at 2:41 AM, Amir Latifi wrote: > Hi > I don't know it's right place to ask or not. > We have a project based on appfuse, we use url rewrite for localization by

[appfuse-user] Eclipse: running Tomcat Missing -core-1.0-SNAPSHOT.jar

2010-02-03 Thread mschipperheyn
Hi, I never actually figured this out and worked around it but now it is time to resolve this issue. the web module pom.xml has a dependency on the core-1.0-SNAPSHOT.jar. When you run Tomcat from within Eclipse for debugging purposes (I use sysdeo), it tries to resolve the dependency and fails.

Re: [appfuse-user] Eclipse: running Tomcat Missing -core-1.0-SNAPSHOT.jar

2010-02-03 Thread Matt Raible
If you run "mvn install" on the core project, it will install the artifact in your local repository and Eclipse should be able to resolve it. Matt On Wed, Feb 3, 2010 at 5:38 AM, mschipperheyn wrote: > > Hi, > > I never actually figured this out and worked around it but now it is time to > resol

[appfuse-user] Re: Eclipse: running Tomcat Missing -core-1.0-SNAPSHOT.jar

2010-02-03 Thread mschipperheyn
Hi Matt, Yes, I know, but I don't want to depend on the command line. I want to work round trip in Eclipse. A lot of mvn command don't seem to run well within Eclipse. Oh well, works well enough. Marc -- View this message in context: http://n4.nabble.com/Eclipse-running-Tomcat-Missing-core-1-

Re: [appfuse-user] Re: Eclipse: running Tomcat Missing -core-1.0-SNAPSHOT.jar

2010-02-03 Thread Matt Raible
You should be able to run install on core from w/in Eclipse if you have m2eclipse installed. Another option is to use the builder-helper-maven-plugin to add the source directory of core to the "web" project. http://mojo.codehaus.org/build-helper-maven-plugin/ On Wed, Feb 3, 2010 at 12:08 PM, msch